8 Commits

Author SHA1 Message Date
e11a5bd96a Fix credits spacing 2025-01-01 14:58:55 -06:00
Lexi Rose
71ae68db77 Merge pull request #221 from aerinon/SancAndQuitFix
fix: sanc & quit fix
2024-10-25 14:16:06 -05:00
aerinon
fb35c96e11 fix: sanc & quit fix 2024-10-25 12:45:44 -06:00
Lexi Rose
758449b7b9 Merge pull request #220 from spannerisms/real
tourney stuff
2024-10-11 09:18:05 -07:00
spannerisms
27a19ce299 tourney stuff 2024-10-10 23:33:20 -04:00
Lexi Rose
86f641b710 Merge pull request #217 from hiimcody1/pseudoboots-visibility
Add indicator for pseudoboots to File Select screen
2024-06-13 13:36:07 -07:00
Lexi Rose
cc309ecb48 Merge pull request #215 from ardnaxelarak/use_text_table
Replace long sequences of dbs with strings using a text table
2024-06-10 08:07:46 -07:00
hiimcody1
474cfba250 Add indicator for pseudoboots to File Select screen 2024-06-08 21:29:20 -04:00
5 changed files with 20 additions and 5 deletions

View File

@@ -36,8 +36,10 @@ SetDeathWorldChecked:
JMP DoWorldFix
.dungeon
LDA.l MosaicLevel : BNE .dontfix ; this is a sanc & quit
LDA.l Bugfix_PreAgaDWDungeonDeathToFakeDW : BNE .done ; if the bugfix is enabled, we do nothing on death in dungeon
JMP DoWorldFix_skip_mirror_check
.dontfix
JMP DoWorldFix_skip_mirror_check
.pyramid
LDA.b #$40 : STA.l CurrentWorld ; set flag to dark world
@@ -72,8 +74,10 @@ SetDeathWorldChecked_Inverted:
JMP DoWorldFix
.dungeon
LDA.l MosaicLevel : BNE .dontfix ; this is a sanc & quit
LDA.l Bugfix_PreAgaDWDungeonDeathToFakeDW : BNE .done ; if the bugfix is enabled, we do nothing on death in dungeon
JMP DoWorldFix_Inverted_skip_mirror_check
.dontfix
JMP DoWorldFix_Inverted_skip_mirror_check
.castle
LDA.b #$00 : STA.l CurrentWorld ; set flag to dark world

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -390,7 +390,13 @@ DrawPlayerFileShared:
LDA.l HexToDecDigit5 : AND.w #$00FF : ORA.w #!FS_COLOR_BW|$02E0 : %fs_draw8x8(11,27)
; Boots
%fs_drawItemBasic(EquipmentSRAM+$15,3,28,FileSelectItems_boots)
LDA.l EquipmentSRAM+$15 : AND.w #$00FF : BNE +
LDA.l FakeBoots : AND.w #$00FF : BEQ +
%fs_drawItem(3,28,FileSelectItems_fakeBoots)
BRA ++
+
%fs_drawItemBasic(EquipmentSRAM+$15,3,28,FileSelectItems_boots)
++
; Gloves
LDA.l EquipmentSRAM+$14 : AND.w #$00FF : BNE +
@@ -543,6 +549,8 @@ FileSelectItems:
.boots
dw #$028C|!FS_COLOR_BOOTS, #$028D|!FS_COLOR_BOOTS, #$029C|!FS_COLOR_BOOTS, #$029D|!FS_COLOR_BOOTS
.fakeBoots
dw #$028C|!FS_COLOR_BLUE, #$028D|!FS_COLOR_BLUE, #$029C|!FS_COLOR_BLUE, #$029D|!FS_COLOR_BLUE
.pearl
dw #$02A4|!FS_COLOR_RED, #$02A5|!FS_COLOR_RED, #$02B4|!FS_COLOR_RED, #$02B5|!FS_COLOR_RED

View File

@@ -503,6 +503,8 @@ CreditsLineBlank:
%smallcredits("YOUR SPRITE BY", "yellow")
%blankline()
%addarbline(YourSpriteCreditsHi)
%addarbline(YourSpriteCreditsLo)
@@ -539,6 +541,8 @@ CreditsLineBlank:
if !FEATURE_PATREON_SUPPORTERS
%smallcredits("PATREON SUPPORTERS", "yellow")
%blankline()
%addarbline(PatronCredit1Hi)
%addarbline(PatronCredit1Lo)
@@ -609,8 +613,6 @@ endif
%emptyline()
%emptyline()
%emptyline()
%emptyline()
%emptyline()
if !FEATURE_PATREON_SUPPORTERS == 0
%emptyline()
@@ -624,6 +626,7 @@ if !FEATURE_PATREON_SUPPORTERS == 0
%emptyline()
%emptyline()
%emptyline()
%emptyline()
endif
;===================================================================================================