diff options
Diffstat (limited to 'src/citra/citra.cpp')
| -rw-r--r-- | src/citra/citra.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index 7c031ce8d..d192428e9 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp | |||
| @@ -27,7 +27,7 @@ int __cdecl main(int argc, char **argv) { | |||
| 27 | }); | 27 | }); |
| 28 | 28 | ||
| 29 | if (argc < 2) { | 29 | if (argc < 2) { |
| 30 | ERROR_LOG(BOOT, "Failed to load ROM: No ROM specified"); | 30 | LOG_CRITICAL(Frontend, "Failed to load ROM: No ROM specified"); |
| 31 | return -1; | 31 | return -1; |
| 32 | } | 32 | } |
| 33 | 33 | ||
| @@ -40,7 +40,7 @@ int __cdecl main(int argc, char **argv) { | |||
| 40 | 40 | ||
| 41 | Loader::ResultStatus load_result = Loader::LoadFile(boot_filename); | 41 | Loader::ResultStatus load_result = Loader::LoadFile(boot_filename); |
| 42 | if (Loader::ResultStatus::Success != load_result) { | 42 | if (Loader::ResultStatus::Success != load_result) { |
| 43 | ERROR_LOG(BOOT, "Failed to load ROM (Error %i)!", load_result); | 43 | LOG_CRITICAL(Frontend, "Failed to load ROM (Error %i)!", load_result); |
| 44 | return -1; | 44 | return -1; |
| 45 | } | 45 | } |
| 46 | 46 | ||