Fix magic bean quest time elapsed for real this time

This commit is contained in:
scawful
2024-12-22 10:27:00 -05:00
parent 1dbaf028ca
commit 3fa0b9346e

View File

@@ -217,15 +217,15 @@ CheckForSongOfTime:
CheckForDailyQuests: CheckForDailyQuests:
{ {
LDA.l MagicBeanProg : AND.b #$7F : BNE .bean_done LDA.l MagicBeanProg : CMP.b #$7F : BEQ .bean_done
AND.b #$01 : BEQ .bean_done AND.b #$01 : BEQ .bean_done
AND.b #$08 : BNE .not_first LDA.l MagicBeanProg : AND.b #$08 : BNE .not_first
LDA.b #$08 : JMP + LDA.b #$08 : JMP +
.not_first .not_first
AND.b #$10 : BNE .not_second LDA.l MagicBeanProg : AND.b #$10 : BNE .not_second
LDA.b #$10 : JMP + LDA.b #$10 : JMP +
.not_second .not_second
AND.b #$20 : BNE .bean_done LDA.l MagicBeanProg : AND.b #$20 : BNE .bean_done
LDA.b #$20 LDA.b #$20
+ +
ORA.l MagicBeanProg : STA.l MagicBeanProg ORA.l MagicBeanProg : STA.l MagicBeanProg