X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_options.pas;h=ace71914663e7a139ae5f705149984909cec83cc;hb=3b7ef59c450d979b7011cdeaadd6d8e59c34f197;hp=5bfedc9d42b8f79e6c351c7ca8e686fd61aa403a;hpb=eb497768f77c4defc2496f09e361600f1cba5dcd;p=d2df-sdl.git diff --git a/src/game/g_options.pas b/src/game/g_options.pas index 5bfedc9..ace7191 100644 --- a/src/game/g_options.pas +++ b/src/game/g_options.pas @@ -68,7 +68,7 @@ var gsMap: String; gsGameMode: String; gsTimeLimit: Word; - gsGoalLimit: Word; + gsScoreLimit: Word; gsMaxLives: Byte; gsPlayers: Byte; gsGameFlags: LongWord; @@ -262,7 +262,7 @@ begin gsMap := ''; gsGameMode := _lc[I_MENU_GAME_TYPE_DM]; gsTimeLimit := 0; - gsGoalLimit := 0; + gsScoreLimit := 0; gsMaxLives := 0; gsPlayers := 1; gsSpawnInvul := 0; @@ -311,7 +311,7 @@ begin if GameMode = GM_SINGLE then GameMode := GM_COOP; TimeLimit := gsTimeLimit; - GoalLimit := gsGoalLimit; + ScoreLimit := gsScoreLimit; MaxLives := gsMaxLives; SpawnInvul := gsSpawnInvul; ItemRespawnTime := gsItemRespawnTime;