Prev: 7DEA Up: Map Next: 7DFA
7DF2: Make a character speak at the correct speed
Used by the routine at 799A. Prevents a character from speaking too fast.
Input
H Character number (0x98-0xA9)
7DF2 LD L,$7B Set the speed change delay counter in byte 0x7B of the character's buffer to 4, preventing any speed change by the routine at 62B2
7DF4 LD (HL),$04
7DF6 DEC L Set bit 7 of byte 0x7A of the character's buffer, indicating that he is moving slowly
7DF7 SET 7,(HL)
7DF9 RET
Prev: 7DEA Up: Map Next: 7DFA