Skip to content

Commit 2f328b9

Browse files
committed
changed config
1 parent f3cf031 commit 2f328b9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/SquarePixel.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import ctypes
2+
3+
14
if __name__ == "__main__":
25
import pygame as pig
36
from SquarePixels.terraingen import terrain_gen as tgen
@@ -19,8 +22,12 @@
1922
video_file: str = r"Recources\\Company Animated Logo.mov"
2023
infoObject: object = pig.display.Info()
2124
screen: pig.Surface = pig.display.set_mode(
22-
(infoObject.current_w, infoObject.current_h - 32), pig.RESIZABLE
25+
(infoObject.current_w, infoObject.current_h), pig.RESIZABLE
2326
)
27+
## Move the window down by 32 pixels
28+
# ctypes.windll.user32.SetWindowPos(
29+
# pig.display.get_wm_info()["window"], 0, 0, 24, 0, 0, 0x0001
30+
# )
2431

2532
pygame_icon = pig.image.load(
2633
r"Recources\program recources\Screenshot 2023-09-21 181742.png"

src/config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
volume = 1.0
22
fogofwar = True
33
fogofwar = True
4+
fullscreen = True
5+
bordered = False

0 commit comments

Comments
 (0)