Changeset 125 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/MenuText.asm


Ignore:
Timestamp:
Mar 3, 2011, 5:43:56 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Cursor coordinates no longer change when clearing menu title or information area.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Menu/MenuText.asm

    r104 r125  
    1 ; File name     :   MenuText.asm
    21; Project name  :   Assembly Library
    3 ; Created date  :   21.7.2010
    4 ; Last update   :   9.12.2010
    5 ; Author        :   Tomi Tilli
    62; Description   :   Functions for drawing menu texts by the user.
    73
     
    2117ALIGN JUMP_ALIGN
    2218MenuText_ClearTitleArea:
     19    CALL_DISPLAY_LIBRARY PushDisplayContext     ; Save cursor coordinates
    2320    call    PrepareToDrawTitleArea
    2421    mov     cl, [bp+MENUINIT.bTitleLines]
     
    2724ALIGN JUMP_ALIGN
    2825MenuText_ClearInformationArea:
     26    CALL_DISPLAY_LIBRARY PushDisplayContext     ; Save cursor coordinates
    2927    call    MenuText_PrepareToDrawInformationArea
    3028    mov     cl, [bp+MENUINIT.bInfoLines]
     
    3634    mov     al, ' '
    3735    CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX
     36    CALL_DISPLAY_LIBRARY PopDisplayContext
    3837    ret
    3938
Note: See TracChangeset for help on using the changeset viewer.