summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 54710d0)
raw | patch | inline | side by side (parent: 54710d0)
author | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Fri, 26 Jan 2018 18:20:08 +0000 (20:20 +0200) | ||
committer | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Fri, 26 Jan 2018 18:20:57 +0000 (20:20 +0200) |
src/game/g_menu.pas | patch | blob | history |
diff --git a/src/game/g_menu.pas b/src/game/g_menu.pas
index 0ba399a571c94dfeaa23e66e2f09f00ee990cccf..ff57a392880a97a2b1bdb2514b6272240288b007 100644 (file)
--- a/src/game/g_menu.pas
+++ b/src/game/g_menu.pas
uses
g_gui, g_textures, e_graphics, g_main, g_window, g_game, g_map,
g_basic, g_console, g_sound, g_gfx, g_player, g_options, g_weapons,
- e_log, SysUtils, CONFIG, g_playermodel, DateUtils,
+ e_log, SysUtils, CONFIG, g_playermodel, DateUtils, sdl2,
MAPDEF, Math, g_saveload,
e_texture, GL, GLExt, g_language,
g_net, g_netmsg, g_netmaster, g_items, e_input,
var
menu: TGUIMenu;
i: Integer;
+ ovs: Boolean;
+ v: Byte;
begin
menu := TGUIMenu(g_GUI_GetWindow('OptionsVideoMenu').GetControl('mOptionsVideoMenu'));
gBPP := 16
else
gBPP := 32;
+
+ ovs := gVSync;
gVSync := TGUISwitch(menu.GetControl('swVSync')).ItemIndex = 0;
+ {$IF not DEFINED(HEADLESS)}
+ if (ovs <> gVSync) then
+ begin
+ if (gVSync) then v := 1 else v := 0;
+ if (SDL_GL_SetSwapInterval(v) <> 0) then writeln('oops; can''t change vsync option, restart required')
+ else writeln('vsync changed');
+ end;
+ {$ENDIF}
+
gTextureFilter := TGUISwitch(menu.GetControl('swTextureFilter')).ItemIndex = 0;
glLegacyNPOT := not (TGUISwitch(menu.GetControl('swLegacyNPOT')).ItemIndex = 0);