Ignore:
Timestamp:
05/06/12 22:30:09 (13 months ago)
Author:
reyalp
Message:

Merged revision(s) 1838-1840 from trunk:
g12 jogdial direction fix from waterwingz in http://chdk.setepontos.com/index.php?topic=650.msg85087#msg85087
d10 - add script led support (0=green, 1=orange, 2=AF)
add script LED support for ixus80_sd1100, from jourh in http://chdk.setepontos.com/index.php?topic=2044.msg85112#msg85112

Location:
branches/release-1_0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/release-1_0

  • branches/release-1_0/platform/g10/kbd.c

    r1344 r1841  
    427427 old_jogdial=new_jogdial; 
    428428 new_jogdial=Get_JogDial(); 
    429  if (old_jogdial>new_jogdial) return JOGDIAL_LEFT; 
    430  else if (old_jogdial<new_jogdial) return JOGDIAL_RIGHT; 
     429 if (old_jogdial<new_jogdial) return JOGDIAL_LEFT; 
     430 else if (old_jogdial>new_jogdial) return JOGDIAL_RIGHT; 
    431431 else return 0; 
    432432} 
Note: See TracChangeset for help on using the changeset viewer.