hle: let EmuLog handler handle debug messages

This commit is contained in:
RadWolfie 2020-10-05 05:28:21 -05:00
parent ea7007090c
commit 31fd0600b6
1 changed files with 1 additions and 4 deletions

View File

@ -192,10 +192,7 @@ void CDECL EmuOutputMessage(xb_output_message mFlag,
}
case XB_OUTPUT_MESSAGE_DEBUG:
default: {
#ifdef _DEBUG_TRACE
printf("%s\n", message);
#endif
EmuLog(LOG_LEVEL::DEBUG, "%s", message);
break;
}
}