Removed confusing punctuation from "Failed to obtain loader" log message

This commit is contained in:
OpenSauce04 2026-03-17 12:19:49 +00:00 committed by OpenSauce
parent 3d5ba09eb1
commit 2ff04dccba
2 changed files with 2 additions and 2 deletions

View File

@ -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 "

View File

@ -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;
}