mirror of https://github.com/nmlgc/ReC98.git
10 lines
303 B
NASM
10 lines
303 B
NASM
; The player's options are supposed to lag behind the player's movement by one
|
|
; frame, and therefore have to be tracked separately.
|
|
|
|
public _PLAYER_OPTION_POS_CUR, _PLAYER_OPTION_POS_PREV
|
|
_player_option_pos_cur Point <?>
|
|
_player_option_pos_prev Point <?>
|
|
if GAME eq 4
|
|
_player_option_patnum dw ?
|
|
endif
|