Changeset 1838


Ignore:
Timestamp:
05/06/12 21:10:08 (13 months ago)
Author:
reyalp
Message:

g12 jogdial direction fix from waterwingz in http://chdk.setepontos.com/index.php?topic=650.msg85087#msg85087

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/platform/g10/kbd.c

    r1568 r1838  
    294294 old_jogdial=new_jogdial; 
    295295 new_jogdial=Get_JogDial(); 
    296  if (old_jogdial>new_jogdial) return JOGDIAL_LEFT; 
    297  else if (old_jogdial<new_jogdial) return JOGDIAL_RIGHT; 
     296 if (old_jogdial<new_jogdial) return JOGDIAL_LEFT; 
     297 else if (old_jogdial>new_jogdial) return JOGDIAL_RIGHT; 
    298298 else return 0; 
    299299} 
Note: See TracChangeset for help on using the changeset viewer.