From a2ec852a4df4577e71c1d76601732f4c8b27b9c9 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 25 Jun 2023 20:49:10 +0200 Subject: [PATCH] Fixed a missing quotation mark in a PDFViewer error log message --- es-app/src/PDFViewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/PDFViewer.cpp b/es-app/src/PDFViewer.cpp index 0d695ba96..a01a1a949 100644 --- a/es-app/src/PDFViewer.cpp +++ b/es-app/src/PDFViewer.cpp @@ -74,7 +74,7 @@ bool PDFViewer::startPDFViewer(FileData* game) mScaleFactor = 1.0f; if (!getDocumentInfo()) { - LOG(LogError) << "PDFViewer: Couldn't load file \"" << mManualPath; + LOG(LogError) << "PDFViewer: Couldn't load file \"" << mManualPath << "\""; NavigationSounds::getInstance().playThemeNavigationSound(SCROLLSOUND); ViewController::getInstance()->stopViewVideos(); return false;