save log for non-console version

This commit is contained in:
David Rose 2009-10-20 19:11:40 +00:00
parent 000bd60935
commit e9f98e18ef

View File

@ -962,7 +962,11 @@ create_instance(const string &p3d, P3D_window_type window_type,
} else {
// Send output to the console.
token._keyword = "console_output";
#ifdef NON_CONSOLE
token._value = "0";
#else
token._value = "1";
#endif
tokens.push_back(token);
}