mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix SCREEN_HEIGHT_PIXELS being wrong constant
Whoops.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#define SCREEN_HEIGHT_TILES 30
|
||||
|
||||
#define SCREEN_WIDTH_PIXELS (SCREEN_WIDTH_TILES * 8)
|
||||
#define SCREEN_HEIGHT_PIXELS (SCREEN_WIDTH_TILES * 8)
|
||||
#define SCREEN_HEIGHT_PIXELS (SCREEN_HEIGHT_TILES * 8)
|
||||
|
||||
#define TILE_IDX(x, y) (x + y * SCREEN_WIDTH_TILES)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user