In non-WITH_STARTUPLOG builds, send startup log events to the standard logging system rather than discard them

Originally committed to SVN as r6134.
This commit is contained in:
Thomas Goyne 2011-12-22 21:30:40 +00:00
parent 046d8a6822
commit 5eb516f8d9
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ enum {
#ifdef WITH_STARTUPLOG
#define StartupLog(a) MessageBox(0, a, "Aegisub startup log", 0)
#else
#define StartupLog(a)
#define StartupLog(a) LOG_I("frame_main/init") << a
#endif
static void autosave_timer_changed(wxTimer *timer, const agi::OptionValue &opt);