summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c788a8f)
raw | patch | inline | side by side (parent: c788a8f)
author | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Thu, 15 Feb 2018 17:29:11 +0000 (19:29 +0200) | ||
committer | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Thu, 15 Feb 2018 17:30:24 +0000 (19:30 +0200) |
src/game/g_options.pas | patch | blob | history |
diff --git a/src/game/g_options.pas b/src/game/g_options.pas
index b92d2578471871aa66962d67a503ee04a330928b..3d67ec0bdc9a953a28fc792e03c950eea7315328 100644 (file)
--- a/src/game/g_options.pas
+++ b/src/game/g_options.pas
gScreenHeight := config.ReadInt('Video', 'ScreenHeight', 600);
if gScreenHeight < 480 then
gScreenHeight := 480;
- gWinRealPosX := config.ReadInt('Video', 'WinPosX', 0);
+ gWinRealPosX := config.ReadInt('Video', 'WinPosX', 60);
if gWinRealPosX < 0 then
- gWinRealPosX := 0;
- gWinRealPosY := config.ReadInt('Video', 'WinPosY', 0);
+ gWinRealPosX := 60;
+ gWinRealPosY := config.ReadInt('Video', 'WinPosY', 60);
if gWinRealPosY < 0 then
- gWinRealPosY := 0;
+ gWinRealPosY := 60;
gFullScreen := config.ReadBool('Video', 'Fullscreen', False);
gWinMaximized := config.ReadBool('Video', 'Maximized', False);
gBPP := config.ReadInt('Video', 'BPP', 32);