1
0
mirror of synced 2024-11-15 01:57:36 +01:00

Add in \n

This commit is contained in:
Bobby Dilley 2023-11-18 22:36:18 +00:00
parent 231be58dfa
commit 2242c155d7

View File

@ -203,9 +203,10 @@ int initConfig()
strcpy(config.rideboardPath, "none"); strcpy(config.rideboardPath, "none");
config.width = 1024; config.width = 1024;
config.height = 768; config.height = 768;
if (detectGame() != 0) if (detectGame() != 0)
{ {
printf("Warning: Unsure what game this is, using default configuration values"); printf("Warning: Unsure what game this is, using default configuration values\n");
} }
configFile = fopen(CONFIG_PATH, "r"); configFile = fopen(CONFIG_PATH, "r");