Prev: 33774 Up: Map Next: 33788
33782: Set a window's height to A
Used by the routines at 31688 and 32252.
Input
A A window height
DE Location of a window's top y-coordinate data
33782 LD C,A Load window height into C
33783 LD A,(DE) Load window's top y-coordinate into A
33784 ADD A,C Add C to give bottom y-coordinate
33785 INC DE Advance DE to window's bottom y-coordinate data...
33786 LD (DE),A ...and update with new height value in A
33787 RET Return
Prev: 33774 Up: Map Next: 33788