mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 22:38:38 -05:00
Convert old logging calls to new logging macros
This commit is contained in:
@ -27,7 +27,7 @@ int __cdecl main(int argc, char **argv) {
|
||||
});
|
||||
|
||||
if (argc < 2) {
|
||||
ERROR_LOG(BOOT, "Failed to load ROM: No ROM specified");
|
||||
LOG_CRITICAL(Frontend, "Failed to load ROM: No ROM specified");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -40,7 +40,7 @@ int __cdecl main(int argc, char **argv) {
|
||||
|
||||
Loader::ResultStatus load_result = Loader::LoadFile(boot_filename);
|
||||
if (Loader::ResultStatus::Success != load_result) {
|
||||
ERROR_LOG(BOOT, "Failed to load ROM (Error %i)!", load_result);
|
||||
LOG_CRITICAL(Frontend, "Failed to load ROM (Error %i)!", load_result);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user