mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-18 04:45:39 +00:00
Fixed a crash when there are no game ROMs present.
This commit is contained in:
parent
8618ee7ea4
commit
12f7e20c95
|
@ -715,7 +715,10 @@ int main(int argc, char* argv[])
|
||||||
// This makes for no delays when accessing content, but a longer startup time.
|
// This makes for no delays when accessing content, but a longer startup time.
|
||||||
ViewController::getInstance()->preload();
|
ViewController::getInstance()->preload();
|
||||||
|
|
||||||
LOG(LogInfo) << "Finished loading theme set \"" << ThemeData::getCurrentThemeSetName() << "\"";
|
if (loadSystemsStatus == loadSystemsReturnCode::LOADING_OK) {
|
||||||
|
LOG(LogInfo) << "Finished loading theme set \"" << ThemeData::getCurrentThemeSetName()
|
||||||
|
<< "\"";
|
||||||
|
}
|
||||||
|
|
||||||
if (splashScreen && splashScreenProgress)
|
if (splashScreen && splashScreenProgress)
|
||||||
window->renderLoadingScreen("Done");
|
window->renderLoadingScreen("Done");
|
||||||
|
|
Loading…
Reference in a new issue