diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-16 00:09:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-16 00:09:21 -0300 |
commit | b2f081c5ac9e174783e4474486e2718f63b78ab2 (patch) | |
tree | 602f2792c15205c9de477a5ab570389a16606b5f /game | |
parent | 58bab76ea1f8471dfa3e8332b148507b5f7c58cd (diff) | |
download | client-b2f081c5ac9e174783e4474486e2718f63b78ab2.tar.gz client-b2f081c5ac9e174783e4474486e2718f63b78ab2.tar.bz2 client-b2f081c5ac9e174783e4474486e2718f63b78ab2.tar.xz client-b2f081c5ac9e174783e4474486e2718f63b78ab2.zip |
Prevent lame pixels of death
Diffstat (limited to 'game')
-rw-r--r-- | game/gui.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/gui.rpy b/game/gui.rpy index d1c28d7..22cb832 100644 --- a/game/gui.rpy +++ b/game/gui.rpy @@ -9,7 +9,7 @@ init offset = -2 ## Calling gui.init resets the styles to sensible default values, and sets the ## width and height of the game. init python: - gui.init(1024, 1820) + gui.init(1026, 1824) |