Skip to content

Commit

Permalink
missing new line in print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyut committed Dec 19, 2021
1 parent bcf78ac commit 601612e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BYONDHook/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void __fastcall hkCommandEvent(void* This, void* _EDX, unsigned char a, unsigned
if (true && commandString)
{
DWORD lastError = GetLastError();
printf("((byond::commandevent)): %s", commandString);
printf("((byond::commandevent)): %s\n", commandString);
}

return oCommandEvent(This, a, b, c);
Expand Down

0 comments on commit 601612e

Please sign in to comment.