Prev: 45617 Up: Map Next: 45631
45625: Set a window's height to A
Used by the routine at 46106.
Input
A A window height
DE Location of a window's top y-coordinate data
45625 LD C,A Load window height into C
45626 LD A,(DE) Load window's top y-coordinate into A
45627 ADD A,C Add C to give bottom y-coordinate
45628 INC DE Advance DE to window's bottom y-coordinate data...
45629 LD (DE),A ...and update with new height value in A
45630 RET Return
Prev: 45617 Up: Map Next: 45631