1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

add some more presets

This commit is contained in:
FunkyFr3sh 2018-11-14 09:12:56 +01:00
parent 91614bf83c
commit 6e92e93334
2 changed files with 13 additions and 1 deletions

View File

@ -4,7 +4,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_BUILD 5
#define VERSION_REVISION 0
#define VERSION_REVISION 1
#define VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION
#define VERSION_STRING ver_str(VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION)

View File

@ -238,6 +238,10 @@ static void CreateSettingsIni()
"[C&C95]\n"
"maxgameticks=60\n"
"\n"
"; Command & Conquer: Red Alert\n"
"[ra95]\n"
"maxgameticks=60\n"
"\n"
"; Age of Empires\n"
"[empires]\n"
"hidemouse=false\n"
@ -281,6 +285,14 @@ static void CreateSettingsIni()
"[BM]\n"
"maxgameticks=60\n"
"\n"
"; Dune 2000\n"
"[dune2000]\n"
"maxgameticks=60\n"
"\n"
"; Dune 2000 Online\n"
"[dune2000-spawn]\n"
"maxgameticks=60\n"
"\n"
, fh);
fclose(fh);