mirror of
https://github.com/colby-swandale/waterfoul
synced 2025-02-05 08:45:52 +01:00
fix incorrect framebuffer size
This commit is contained in:
parent
5a71e8de00
commit
8b727f1bde
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module Waterfoul
|
|||
SCREEN_WIDTH = 160
|
||||
SCREEN_HEIGHT = 144
|
||||
|
||||
FRAMEBUFFER_SIZE = SCREEN_WIDTH * SCREEN_HEIGHT
|
||||
FRAMEBUFFER_SIZE = (Screen::SCREEN_WIDTH - 1) * (Screen::SCREEN_HEIGHT - 1)
|
||||
|
||||
H_BLANK_STATE = 0
|
||||
V_BLANK_STATE = 1
|
||||
|
|
Loading…
Add table
Reference in a new issue