X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_options.pas;h=bbaa0435d5a5078680024ed9ae9c3f21a2289ca3;hp=54ea9208357b5bdbab46ccb58a9b0cf3db9b2823;hb=6dc6f21202599fba3f371fadd612747402776f5f;hpb=4d17c87d4865a7e2a7089a226238a144bb6c8de2 diff --git a/src/game/g_options.pas b/src/game/g_options.pas index 54ea920..bbaa043 100644 --- a/src/game/g_options.pas +++ b/src/game/g_options.pas @@ -95,6 +95,7 @@ var gsSDLSampleRate: Integer = 44100; gsSDLBufferSize: Integer = 2048; gSFSDebug: Boolean = False; + gSFSFastMode: Boolean = True; implementation @@ -332,7 +333,8 @@ begin gShowMessages := config.ReadBool('Game', 'Messages', True); gRevertPlayers := config.ReadBool('Game', 'RevertPlayers', False); gChatBubble := Min(Max(config.ReadInt('Game', 'ChatBubble', 4), 0), 4); - gSFSDebug := config.ReadBool('Game', 'gSFSDebug', False); + gSFSDebug := config.ReadBool('Game', 'SFSDebug', False); + gSFSFastMode := config.ReadBool('Game', 'SFSFastMode', True); // Ãåéìïëåé â ñâîåé èãðå gcMap := config.ReadStr('GameplayCustom', 'Map', ''); @@ -535,6 +537,7 @@ begin config.WriteBool('Game', 'RevertPlayers', gRevertPlayers); config.WriteInt('Game', 'ChatBubble', gChatBubble); config.WriteBool('Game', 'SFSDebug', gSFSDebug); + config.WriteBool('Game', 'SFSFastMode', gSFSFastMode); config.WriteStr ('GameplayCustom', 'Map', gcMap); config.WriteStr ('GameplayCustom', 'GameMode', gcGameMode);