Prev: 67e7 Up: Map Next: 6810
67fd: Set the default explosion SFX params.
The audio is triggered from the 6971 routine using the explosion_sfx_params data.
Used by the routines at 6456, 6bf1, 6d5c and 6d9c.
Input
A selects SFX #1 or #2.
67fd ld c,a
67fe sla c C=0 or 2
6800 ld b,$00
6802 ld de,$5d28 DE=explosion SFX params
6805 ld hl,$6810 HL=explosion SFX param defaults
6808 add hl,bc Set offset: first or second pair of bytes
6809 ld a,(hl) Copy defaults to the params
680a ld (de),a
680b inc hl
680c inc de
680d ld a,(hl)
680e ld (de),a
680f ret
Prev: 67e7 Up: Map Next: 6810