Changeset 105 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/MenuScrollbars.asm


Ignore:
Timestamp:
Feb 17, 2011, 2:52:42 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • More optimizations to reduce size.
  • Removed some utility functions to reduce size.
File:
1 edited

Legend:

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

    r67 r105  
    1 ; File name     :   MenuScrollbars.asm
    21; Project name  :   Assembly Library
    3 ; Created date  :   20.7.2010
    4 ; Last update   :   9.12.2010
    5 ; Author        :   Tomi Tilli
    62; Description   :   Functions for drawing scroll bars over menu borders.
    73
     
    185181
    186182;--------------------------------------------------------------------
    187 ; .IsItemInCXonVisiblePage
     183; MenuScrollbars_IsItemInCXonVisiblePage
    188184;   Parameters
    189185;       CX:     Item whose visibility is to be checked
     
    197193ALIGN JUMP_ALIGN
    198194MenuScrollbars_IsItemInCXonVisiblePage:
    199     cmp     cx, [bp+MENUINIT.wItems]
    200     jae     SHORT .ItemIsNotVisible
    201 
    202195    cmp     cx, [bp+MENU.wFirstVisibleItem]
    203196    jb      SHORT .ItemIsNotVisible
     
    215208
    216209;--------------------------------------------------------------------
    217 ; MenuLocation_GetLastVisibleItemOnPageToAX
     210; MenuScrollbars_GetLastVisibleItemOnPageToAX
    218211;   Parameters
    219212;       SS:BP:  Ptr to MENU
Note: See TracChangeset for help on using the changeset viewer.