mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 15:45:24 +13:00
add border constant and clear up misnomer
This commit is contained in:
parent
599a6aeaaf
commit
b6ac1018c2
11 changed files with 103 additions and 87 deletions
|
|
@ -1,3 +1,7 @@
|
|||
; width of east/west connections
|
||||
; height of north/south connections
|
||||
MAP_BORDER EQU 3
|
||||
|
||||
; connection directions
|
||||
EAST EQU 1
|
||||
WEST EQU 2
|
||||
|
|
|
|||
|
|
@ -25,13 +25,14 @@ D_LEFT EQU %00100000
|
|||
D_UP EQU %01000000
|
||||
D_DOWN EQU %10000000
|
||||
|
||||
PIXELS_PER_TILE EQU 8
|
||||
|
||||
SCREEN_WIDTH EQU 20
|
||||
SCREEN_HEIGHT EQU 18
|
||||
|
||||
SCREEN_WIDTH_PIXELS EQU SCREEN_WIDTH * PIXELS_PER_TILE
|
||||
SCREEN_HEIGHT_PIXELS EQU SCREEN_HEIGHT * PIXELS_PER_TILE
|
||||
SCREEN_WIDTH_PIXELS EQU SCREEN_WIDTH * 8
|
||||
SCREEN_HEIGHT_PIXELS EQU SCREEN_HEIGHT * 8
|
||||
|
||||
BG_MAP_WIDTH EQU 32
|
||||
BG_MAP_HEIGHT EQU 32
|
||||
|
||||
NPC_MOVEMENT_DOWN EQU $00
|
||||
NPC_MOVEMENT_UP EQU $40
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue