Changeset 566 for trunk/core/gui_osd.c


Ignore:
Timestamp:
11/15/08 07:12:19 (5 years ago)
Author:
reyalp
Message:

misc patches from chr in prep for ixus80_sd1100
see http://chdk.setepontos.com/index.php/topic,650.msg24281.html#msg24281
applied
0001-found-O_APPEND-for-dryos.patch
0004-tool-for-encoding-diskboot.bin-images.patch
0005-hack-gensigs.sh-we-have-different-rom-start-adresse.patch
0008-while-hacking-it-happend-that-.cfg-got-corrupt-and.patch
0009-hacking-debug-osd-panel.patch
0011-compile-fix-make-OPT_DEBUGGING-global.patch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/gui_osd.c

    r556 r566  
    116116            osd[curr_item].pos->x+=(screen_width-osd[curr_item].size.x-osd[curr_item].pos->x>step)?step:screen_width-osd[curr_item].size.x-osd[curr_item].pos->x; 
    117117            osd_to_draw = 1; 
    118         } 
     118        } else 
     119            osd[curr_item].pos->x = screen_width-osd[curr_item].size.x; 
    119120        break; 
    120121    case KEY_UP: 
     
    128129            osd[curr_item].pos->y+=(screen_height-osd[curr_item].size.y-osd[curr_item].pos->y>step)?step:screen_height-osd[curr_item].size.y-osd[curr_item].pos->y; 
    129130            osd_to_draw = 1; 
    130         } 
     131        } else 
     132            osd[curr_item].pos->y = screen_height-osd[curr_item].size.y; 
    131133        break; 
    132134    case KEY_SET: 
Note: See TracChangeset for help on using the changeset viewer.