Fixed a missing quotation mark in a PDFViewer error log message

This commit is contained in:
Leon Styhre 2023-06-25 20:49:10 +02:00
parent f4af8470b9
commit a2ec852a4d

View file

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