Added missing newlines to printfs
This commit is contained in:
parent
168f69adf2
commit
7eae431e3a
1 changed files with 3 additions and 3 deletions
|
@ -224,13 +224,13 @@ int main(int argc, char *argv[])
|
||||||
if (cursor)
|
if (cursor)
|
||||||
SDL_SetCursor(cursor);
|
SDL_SetCursor(cursor);
|
||||||
else
|
else
|
||||||
printf("Failed to load cursor");
|
printf("Failed to load cursor\n");
|
||||||
|
|
||||||
SDL_FreeSurface(cursor_surface);
|
SDL_FreeSurface(cursor_surface);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("Failed to load cursor");
|
printf("Failed to load cursor\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
//Get window dimensions and colour depth
|
//Get window dimensions and colour depth
|
||||||
|
@ -329,7 +329,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("Failed to load icon");
|
printf("Failed to load icon\n");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue