mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
Fixed an issue where text scrolling would get disabled upon failed game launches.
This commit is contained in:
parent
42c07ee4c5
commit
36dd70b476
|
@ -893,6 +893,7 @@ void FileData::launchGame(Window* window)
|
||||||
|
|
||||||
window->queueInfoPopup("ERROR: MISSING EMULATOR CONFIGURATION FOR '" + emulatorEntry + "'",
|
window->queueInfoPopup("ERROR: MISSING EMULATOR CONFIGURATION FOR '" + emulatorEntry + "'",
|
||||||
6000);
|
6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (binaryPath.empty()) {
|
else if (binaryPath.empty()) {
|
||||||
|
@ -902,6 +903,7 @@ void FileData::launchGame(Window* window)
|
||||||
|
|
||||||
window->queueInfoPopup("ERROR: COULDN'T FIND EMULATOR, HAS IT BEEN PROPERLY INSTALLED?",
|
window->queueInfoPopup("ERROR: COULDN'T FIND EMULATOR, HAS IT BEEN PROPERLY INSTALLED?",
|
||||||
6000);
|
6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -949,6 +951,7 @@ void FileData::launchGame(Window* window)
|
||||||
"ERROR: COULDN'T FIND EMULATOR CORE FILE '" +
|
"ERROR: COULDN'T FIND EMULATOR CORE FILE '" +
|
||||||
Utils::String::toUpper(Utils::FileSystem::getFileName(coreFile)) + "'",
|
Utils::String::toUpper(Utils::FileSystem::getFileName(coreFile)) + "'",
|
||||||
6000);
|
6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -967,6 +970,7 @@ void FileData::launchGame(Window* window)
|
||||||
LOG(LogError) << commandRaw;
|
LOG(LogError) << commandRaw;
|
||||||
|
|
||||||
window->queueInfoPopup("ERROR: INVALID ENTRY IN SYSTEMS CONFIGURATION FILE", 6000);
|
window->queueInfoPopup("ERROR: INVALID ENTRY IN SYSTEMS CONFIGURATION FILE", 6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -979,6 +983,7 @@ void FileData::launchGame(Window* window)
|
||||||
LOG(LogError) << commandRaw;
|
LOG(LogError) << commandRaw;
|
||||||
|
|
||||||
window->queueInfoPopup("ERROR: MISSING CORE CONFIGURATION FOR '" + coreEntry + "'", 6000);
|
window->queueInfoPopup("ERROR: MISSING CORE CONFIGURATION FOR '" + coreEntry + "'", 6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1048,6 +1053,7 @@ void FileData::launchGame(Window* window)
|
||||||
LOG(LogError) << commandRaw;
|
LOG(LogError) << commandRaw;
|
||||||
|
|
||||||
window->queueInfoPopup("ERROR: INVALID ENTRY IN SYSTEMS CONFIGURATION FILE", 6000);
|
window->queueInfoPopup("ERROR: INVALID ENTRY IN SYSTEMS CONFIGURATION FILE", 6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1064,6 +1070,7 @@ void FileData::launchGame(Window* window)
|
||||||
"ERROR: COULDN'T FIND EMULATOR CORE FILE '" +
|
"ERROR: COULDN'T FIND EMULATOR CORE FILE '" +
|
||||||
Utils::String::toUpper(coreName.substr(0, coreName.size()) + "'"),
|
Utils::String::toUpper(coreName.substr(0, coreName.size()) + "'"),
|
||||||
6000);
|
6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1107,6 +1114,7 @@ void FileData::launchGame(Window* window)
|
||||||
Utils::String::toUpper(metadata.get("name")) + "' (ERROR CODE " +
|
Utils::String::toUpper(metadata.get("name")) + "' (ERROR CODE " +
|
||||||
Utils::String::toUpper(std::to_string(returnValue) + ")"),
|
Utils::String::toUpper(std::to_string(returnValue) + ")"),
|
||||||
6000);
|
6000);
|
||||||
|
window->setAllowTextScrolling(true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Stop showing the game launch notification.
|
// Stop showing the game launch notification.
|
||||||
|
|
Loading…
Reference in a new issue