From 1cbd9cbd2de8cf28df5033238ea4b708bf226460 Mon Sep 17 00:00:00 2001 From: Thorsten Kattanek Date: Fri, 6 Mar 2020 08:17:12 +0100 Subject: [PATCH] fix: C64::LoadPRG LoadError LogOut add \n --- src/c64_class.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c64_class.cpp b/src/c64_class.cpp index b804ebd..dd2cf27 100755 --- a/src/c64_class.cpp +++ b/src/c64_class.cpp @@ -2588,7 +2588,7 @@ int C64Class::LoadPRG(const char *filename, uint16_t *return_start_address) file = fopen (filename, "rb"); if (file == nullptr) { - LogText(const_cast("<< ERROR: Datei konnte nicht geöffnet werden")); + LogText(const_cast("<< ERROR: Datei konnte nicht geöffnet werden\n")); return 0x01; } reading_bytes = fread (&temp,1,2,file);