mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
wGameTimerPause bit flag constants
This commit is contained in:
parent
682548493b
commit
c5cc23a35f
@ -16,6 +16,10 @@ AUTO_INPUT EQU $ff
|
|||||||
const TEMPMON ; 3
|
const TEMPMON ; 3
|
||||||
const WILDMON ; 4
|
const WILDMON ; 4
|
||||||
|
|
||||||
|
; wGameTimerPause:: ; cfbc
|
||||||
|
GAMETIMERPAUSE_TIMER_PAUSED_F EQU 0
|
||||||
|
GAMETIMERPAUSE_MOBILE_7_F EQU 7
|
||||||
|
|
||||||
; Options:: ; cfcc
|
; Options:: ; cfcc
|
||||||
const_value set 4
|
const_value set 4
|
||||||
const NO_TEXT_SCROLL ; 4
|
const NO_TEXT_SCROLL ; 4
|
||||||
|
@ -122,10 +122,10 @@ EngineFlags: ; 80462
|
|||||||
engine_flag wWeeklyFlags, WEEKLYFLAGS_DAILY_MOVE_TUTOR_F
|
engine_flag wWeeklyFlags, WEEKLYFLAGS_DAILY_MOVE_TUTOR_F
|
||||||
engine_flag wWeeklyFlags, WEEKLYFLAGS_BUENAS_PASSWORD_F
|
engine_flag wWeeklyFlags, WEEKLYFLAGS_BUENAS_PASSWORD_F
|
||||||
|
|
||||||
engine_flag wSwarmFlags, SWARMFLAGS_BUENAS_PASSWORD_F
|
engine_flag wSwarmFlags, SWARMFLAGS_BUENAS_PASSWORD_F ; $60
|
||||||
engine_flag wSwarmFlags, SWARMFLAGS_GOLDENROD_DEPT_STORE_SALE_F
|
engine_flag wSwarmFlags, SWARMFLAGS_GOLDENROD_DEPT_STORE_SALE_F
|
||||||
|
|
||||||
engine_flag wGameTimerPause, 7 ; $62
|
engine_flag wGameTimerPause, GAMETIMERPAUSE_MOBILE_7_F
|
||||||
|
|
||||||
engine_flag wPlayerGender, PLAYERGENDER_FEMALE_F
|
engine_flag wPlayerGender, PLAYERGENDER_FEMALE_F
|
||||||
|
|
||||||
|
@ -484,8 +484,8 @@ FinishContinueFunction: ; 5e5d
|
|||||||
ld [wDontPlayMapMusicOnReload], a
|
ld [wDontPlayMapMusicOnReload], a
|
||||||
ld [wLinkMode], a
|
ld [wLinkMode], a
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
set 0, [hl]
|
set GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
|
||||||
res 7, [hl]
|
res GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
ld hl, wEnteredMapFromContinue
|
ld hl, wEnteredMapFromContinue
|
||||||
set 1, [hl]
|
set 1, [hl]
|
||||||
farcall OverworldLoop
|
farcall OverworldLoop
|
||||||
|
@ -10,7 +10,7 @@ MainMenu: ; 49cdc
|
|||||||
call GetSGBLayout
|
call GetSGBLayout
|
||||||
call SetPalettes
|
call SetPalettes
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
res 0, [hl]
|
res GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
|
||||||
call MainMenu_GetWhichMenu
|
call MainMenu_GetWhichMenu
|
||||||
ld [wWhichIndexSet], a
|
ld [wWhichIndexSet], a
|
||||||
call MainMenu_PrintCurrentTimeAndDay
|
call MainMenu_PrintCurrentTimeAndDay
|
||||||
|
@ -2804,12 +2804,12 @@ Script_halloffame:
|
|||||||
; script command 0xa1
|
; script command 0xa1
|
||||||
|
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
res 0, [hl]
|
res GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
|
||||||
farcall StubbedTrainerRankings_HallOfFame
|
farcall StubbedTrainerRankings_HallOfFame
|
||||||
farcall StubbedTrainerRankings_HallOfFame2
|
farcall StubbedTrainerRankings_HallOfFame2
|
||||||
farcall HallOfFame
|
farcall HallOfFame
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
set 0, [hl]
|
set GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
|
||||||
jr ReturnFromCredits
|
jr ReturnFromCredits
|
||||||
|
|
||||||
Script_credits:
|
Script_credits:
|
||||||
|
@ -39,7 +39,7 @@ UpdateGameTimer:: ; 20ad
|
|||||||
|
|
||||||
; Is the timer paused?
|
; Is the timer paused?
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
bit 0, [hl]
|
bit GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
|
||||||
ret z
|
ret z
|
||||||
|
|
||||||
; Is the timer already capped?
|
; Is the timer already capped?
|
||||||
|
@ -26,17 +26,17 @@ OpenSRAMBank4: ; 89160
|
|||||||
|
|
||||||
Function89168: ; 89168 (22:5168)
|
Function89168: ; 89168 (22:5168)
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
set 7, [hl]
|
set GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Function8916e: ; 8916e (22:516e)
|
Function8916e: ; 8916e (22:516e)
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
res 7, [hl]
|
res GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Function89174: ; 89174 (22:5174)
|
Function89174: ; 89174 (22:5174)
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
bit 7, [hl]
|
bit GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Function8917a: ; 8917a (22:517a)
|
Function8917a: ; 8917a (22:517a)
|
||||||
|
@ -2812,7 +2812,7 @@ Special_Function1011f1: ; 1011f1
|
|||||||
ld hl, wdc41
|
ld hl, wdc41
|
||||||
res 4, [hl]
|
res 4, [hl]
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
bit 7, [hl]
|
bit GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
jr z, .skip
|
jr z, .skip
|
||||||
ld hl, wdc41
|
ld hl, wdc41
|
||||||
set 4, [hl]
|
set 4, [hl]
|
||||||
@ -4703,7 +4703,7 @@ Function101e98: ; 101e98
|
|||||||
farcall Function8adb3
|
farcall Function8adb3
|
||||||
ret c
|
ret c
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
set 7, [hl]
|
set GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
ld hl, wdc41
|
ld hl, wdc41
|
||||||
set 4, [hl]
|
set 4, [hl]
|
||||||
ret
|
ret
|
||||||
@ -4711,7 +4711,7 @@ Function101e98: ; 101e98
|
|||||||
|
|
||||||
Function101ead: ; 101ead
|
Function101ead: ; 101ead
|
||||||
ld hl, wGameTimerPause
|
ld hl, wGameTimerPause
|
||||||
bit 7, [hl]
|
bit GAMETIMERPAUSE_MOBILE_7_F, [hl]
|
||||||
jr nz, .asm_101ec8
|
jr nz, .asm_101ec8
|
||||||
ld hl, wdc41
|
ld hl, wdc41
|
||||||
bit 2, [hl]
|
bit 2, [hl]
|
||||||
|
Loading…
Reference in New Issue
Block a user