DEADSOFTWARE

set default window position to (60, 60), so poor shitdows10 users suffer less
authorKetmar Dark <ketmar@ketmar.no-ip.org>
Thu, 15 Feb 2018 17:29:11 +0000 (19:29 +0200)
committerKetmar Dark <ketmar@ketmar.no-ip.org>
Thu, 15 Feb 2018 17:30:24 +0000 (19:30 +0200)
src/game/g_options.pas

index b92d2578471871aa66962d67a503ee04a330928b..3d67ec0bdc9a953a28fc792e03c950eea7315328 100644 (file)
@@ -293,12 +293,12 @@ begin
   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);