1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 17:58:41 +00:00

allow console to work again

This commit is contained in:
radius 2017-02-15 21:09:27 -05:00
parent 5d8c191df7
commit 4db257c104

View File

@ -56,7 +56,7 @@ void verbosity_enable(void)
{
main_verbosity = true;
#ifdef RARCH_INTERNAL
if (!log_file)
if (!log_file_initialized)
frontend_driver_attach_console();
#endif
}
@ -65,7 +65,7 @@ void verbosity_disable(void)
{
main_verbosity = false;
#ifdef RARCH_INTERNAL
if (!log_file)
if (!log_file_initialized)
frontend_driver_detach_console();
#endif
}