mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-03-27 05:49:12 -06:00
Removed confusing punctuation from "Failed to obtain loader" log message
This commit is contained in:
parent
3d5ba09eb1
commit
2ff04dccba
@ -1290,7 +1290,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
|
||||
if (result != Core::System::ResultStatus::Success) {
|
||||
switch (result) {
|
||||
case Core::System::ResultStatus::ErrorGetLoader:
|
||||
LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filename.toStdString());
|
||||
LOG_CRITICAL(Frontend, "Failed to obtain loader for {}", filename.toStdString());
|
||||
QMessageBox::critical(
|
||||
this, tr("Invalid App Format"),
|
||||
tr("Your app format is not supported.<br/>Please follow the guides to redump your "
|
||||
|
||||
@ -303,7 +303,7 @@ System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::st
|
||||
app_loader = Loader::GetLoader(filepath);
|
||||
}
|
||||
if (!app_loader) {
|
||||
LOG_CRITICAL(Core, "Failed to obtain loader for {}!", filepath);
|
||||
LOG_CRITICAL(Core, "Failed to obtain loader for {}", filepath);
|
||||
return ResultStatus::ErrorGetLoader;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user