Prev: 961C Up: Map Next: 9641
9625: Blit string.
Used by the routine at Bg_BlitOneWord.
Input
HL Ptr to string.
B Number of words.
Output
Bg_BlitWordIntoBitmap 9625 LD A,(IX+$00) Get index of bitmap to draw string into (sign or a window etc).
9628 CALL Draw_StringIntoOther Draw string into the bitmap.
962B LD A,(Bg_ColumnsLeft)
962E CP $07
9630 JP Z,Bg_BlitItemColumn
9633 LD HL,(Ptr_Offscreen)
9636 LD DE,$0044
9639 AND A
963A SBC HL,DE
963C LD (HL),$38
963E JP Bg_BlitItemColumn
Prev: 961C Up: Map Next: 9641