mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 07:35:38 +00:00
Fixed a missing quotation mark in a PDFViewer error log message
This commit is contained in:
parent
f4af8470b9
commit
a2ec852a4d
|
@ -74,7 +74,7 @@ bool PDFViewer::startPDFViewer(FileData* game)
|
||||||
mScaleFactor = 1.0f;
|
mScaleFactor = 1.0f;
|
||||||
|
|
||||||
if (!getDocumentInfo()) {
|
if (!getDocumentInfo()) {
|
||||||
LOG(LogError) << "PDFViewer: Couldn't load file \"" << mManualPath;
|
LOG(LogError) << "PDFViewer: Couldn't load file \"" << mManualPath << "\"";
|
||||||
NavigationSounds::getInstance().playThemeNavigationSound(SCROLLSOUND);
|
NavigationSounds::getInstance().playThemeNavigationSound(SCROLLSOUND);
|
||||||
ViewController::getInstance()->stopViewVideos();
|
ViewController::getInstance()->stopViewVideos();
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue