make prospector more useful on windows machines

develop
Petr Mrázek 2009-09-14 21:19:33 +00:00
parent ea2dca0e28
commit 36c7cb94fb
1 changed files with 9 additions and 0 deletions

@ -40,6 +40,10 @@ int main (int argc, const char* argv[])
showbaselayers = true; showbaselayers = true;
} }
} }
// let's be more useful when double-clicked on windows
#ifndef LINUX_BUILD
showhidden = true;
#endif
uint32_t x_max,y_max,z_max; uint32_t x_max,y_max,z_max;
uint16_t tiletypes[16][16]; uint16_t tiletypes[16][16];
t_designation designations[16][16]; t_designation designations[16][16];
@ -164,5 +168,10 @@ int main (int argc, const char* argv[])
{ {
cout << stonetypes[p->first].id << " : " << p->second << endl; cout << stonetypes[p->first].id << " : " << p->second << endl;
} }
// wait for input on windows so the tool is still usable to some extent
#ifndef LINUX_BUILD
uint32_t junk = 0;
cin >> junk;
#endif
return 0; return 0;
} }