fix: the system was entirely unusable, just make the user input the constants themselves

This commit is contained in:
2025-03-04 14:39:54 +01:00
parent c0bdc6ca17
commit 3af8cb9435
4 changed files with 10 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ static renderdata rdat;
static void init(void) {
// initialize SDL
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
error(ERROR_SDL_INIT, "SDL could not initialize! SDL Error: %s", SDL_GetError());
error(ERROR_SDL_INIT, __FILE_NAME__, __LINE__, "SDL could not initialize! SDL Error: %s", SDL_GetError());
// initialize other game components
gt = gametime_new();