summaryrefslogtreecommitdiff
path: root/src/engine/unused_copyright.asm
blob: 2ce0afdf8a68639ebd935a6b0c26f4e926057d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; shows Copyright information for 300 frames
; or until Start button is pressed
UnusedCopyrightScreen: ; unreferenced
	call DisableLCD
	farcall Func_10a9b
	farcall InitMenuScreen
	ld bc, $0
	ld a, SCENE_COPYRIGHT
	call LoadScene
	farcall FadeScreenFromWhite
	ld bc, 300
.loop_frame
	push bc
	call DoFrameIfLCDEnabled
	call UpdateRNGSources
	pop bc
	ldh a, [hKeysPressed]
	and START
	jr nz, .exit
	dec bc
	ld a, b
	or c
	jr nz, .loop_frame
.exit
	farcall FadeScreenToWhite
	ret