Changeset 125 in xtideuniversalbios


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.
Location:
trunk/Assembly_Library/Src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/LibraryTests.asm

    r67 r125  
    9898.szInfoTitle:
    9999    db      "Information line 1,",LF,CR,
    100     db      "Information line 2. ",
    101     db      "This comes (12) right after Information line 2.",NULL
     100    db      "Information line 2. Auto splitter should split this very long line.",NULL
    102101
    103102ALIGN JUMP_ALIGN
  • 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.