Merge pull request #548 from pzychotic/fix-errors

Fix small collection of errors
This commit is contained in:
Louis Gombert
2024-09-08 22:41:46 +02:00
committed by GitHub
4 changed files with 9 additions and 5 deletions

View File

@@ -174,6 +174,6 @@ void con_raw_Destroy() {
// put some data up on the screen
void con_raw_Puts(int window, const char *str) {
fprintf(stdout, str, strlen(str));
fprintf(stdout, str);
fflush(stdout);
}