diff options
| author | anmart <andrewrmartinek@gmail.com> | 2016-02-09 11:04:23 -0500 | 
|---|---|---|
| committer | anmart <andrewrmartinek@gmail.com> | 2016-02-09 11:04:23 -0500 | 
| commit | 6df8da7bb2e5c0a3953c8e61446ee826680c1fdf (patch) | |
| tree | 9c079827d797aefa49eafdb88cd30d59eb4db3d5 | |
| parent | 67ef216c62b726bcee05d615cb6b831d62b75038 (diff) | |
Made player_turn and opponent_turn values more clear
| -rw-r--r-- | src/constants/misc_constants.asm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/constants/misc_constants.asm b/src/constants/misc_constants.asm index 6db4460..08b6c35 100644 --- a/src/constants/misc_constants.asm +++ b/src/constants/misc_constants.asm @@ -4,5 +4,5 @@ CONSOLE_SGB                 EQU $01  CONSOLE_CGB                 EQU $02  ; dueling constants -PLAYER_TURN					EQU $c2 -OPPONENT_TURN				EQU $c3
\ No newline at end of file +PLAYER_TURN   EQUS "wPlayerDuelVariables >> $8" +OPPONENT_TURN EQUS "wOpponentDuelVariables >> $8"
\ No newline at end of file | 
