2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

added log msg to core

This commit is contained in:
ShizZy 2013-09-18 22:36:07 -04:00
parent 9a248afb5a
commit b2c5690413

View file

@ -42,6 +42,8 @@ void Stop() {
/// Initialize the core
int Init(EmuWindow* emu_window) {
Memory::Init();
NOTICE_LOG(MASTER_LOG, "Core initialized OK");
return 0;
}