comparison dmrender.h @ 106:f8880b75524b

Add missing \n to error message.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 03 Nov 2023 23:17:27 +0200
parents 28dd29f3a65f
children
comparison
equal deleted inserted replaced
105:10adf567b6f2 106:f8880b75524b
41 if ((sdlWindow = SDL_CreateWindow(title, 41 if ((sdlWindow = SDL_CreateWindow(title,
42 sdlWindowHPos, sdlWindowVPos, 42 sdlWindowHPos, sdlWindowVPos,
43 windowWidth, windowHeight, 43 windowWidth, windowHeight,
44 sdlFlags)) == NULL) 44 sdlFlags)) == NULL)
45 { 45 {
46 dmError("Could not create SDL window: %s", 46 dmError("Could not create SDL window: %s\n",
47 SDL_GetError()); 47 SDL_GetError());
48 48
49 return false; 49 return false;
50 } 50 }
51 else 51 else