Skip to content

Commit

Permalink
fix: C64::LoadPRG LoadError LogOut add \n
Browse files Browse the repository at this point in the history
  • Loading branch information
ThKattanek authored and Kattanek committed Mar 6, 2020
1 parent d5327aa commit 1cbd9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c64_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<char*>("<< ERROR: Datei konnte nicht geöffnet werden"));
LogText(const_cast<char*>("<< ERROR: Datei konnte nicht geöffnet werden\n"));
return 0x01;
}
reading_bytes = fread (&temp,1,2,file);
Expand Down

0 comments on commit 1cbd9cb

Please sign in to comment.