summaryrefslogtreecommitdiff
path: root/src/engine/unused_copyright.asm
blob: 31a489beeb272e5c477435abf43e5b4123f76a1b (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 Func_10000
	ld bc, $0
	ld a, SCENE_COPYRIGHT
	call LoadScene
	farcall Func_10af9
	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 Func_10ab4
	ret