-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from andwhyisit/naming-screen-3
Name Entry Part 3
- Loading branch information
Showing
12 changed files
with
1,156 additions
and
578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
INCLUDE "game/src/common/constants.asm" | ||
|
||
SECTION "Naming Entry Variables", WRAM0[$C763] | ||
W_NamingEntryBottomRowSelection:: ds 1 | ||
W_NamingEntryCursorPositionIndexWithinGroup:: ds 1 | ||
W_NamingEntryCursorRowIndex:: ds 1 | ||
|
||
; Look in version folders for the actual code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
INCLUDE "game/src/common/constants.asm" | ||
|
||
; Look in version folders for the actual code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
INCLUDE "game/src/common/constants.asm" | ||
INCLUDE "game/src/common/macros.asm" | ||
|
||
W_NamingEntryCurrentPage EQU $C48C | ||
W_NamingScreenCursorPositionIndex EQU $C48D | ||
|
||
cNSOFFSET EQU 0 | ||
INCLUDE "./game/src/version/nameentry_core.asm" | ||
INCLUDE "./game/src/version/nameentry_player_naming_core.asm" | ||
INCLUDE "./game/src/version/nameentry_medal_naming_core.asm" | ||
INCLUDE "./game/src/version/nameentry_entry_core.asm" | ||
INCLUDE "./game/src/version/nameentry_entry.asm" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
INCLUDE "game/src/common/constants.asm" | ||
INCLUDE "game/src/common/macros.asm" | ||
|
||
W_NamingEntryCurrentPage EQU $C48C | ||
W_NamingScreenCursorPositionIndex EQU $C48D | ||
|
||
cNSOFFSET EQU 5 | ||
INCLUDE "./game/src/version/nameentry_core.asm" | ||
INCLUDE "./game/src/version/nameentry_player_naming_core.asm" | ||
INCLUDE "./game/src/version/nameentry_medal_naming_core.asm" | ||
INCLUDE "./game/src/version/nameentry_entry_core.asm" | ||
INCLUDE "./game/src/version/nameentry_entry.asm" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.