Changeset 593 for trunk/core/raw.c


Ignore:
Timestamp:
11/25/08 22:42:15 (4 years ago)
Author:
phyrephox
Message:
  • updated french.lng

+ added "saving time switch" in raw menu (better in debug menu?) - it is disabled at default (when enabled, shows time it takes to save raw/dng)
+ added a feature that allows using cfgs from a different camera by resetting "critical" settings on startup of the platform id doesnt match (more settings? less settings? need input)
+ added "get_platform_id" to ubasic, which returns platformid (integer), with the help of this you can code platform depending scripts (in lua we dont need this, as we can get strings there)
+ finally added Bill's user menu mod - see http://chdk.setepontos.com/index.php/topic,2179.msg20301.html#msg20301 (something's still need to be done about the models without zoom lever)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/raw.c

    r590 r593  
    168168            } 
    169169#endif 
    170 timer=get_tick_count()-timer; 
    171 sprintf(txt, "saving time=%d", timer); 
    172 script_console_add_line(txt); 
    173  
     170if (conf.raw_timer) 
     171        { 
     172    timer=get_tick_count()-timer; 
     173    sprintf(txt, "saving time=%d", timer); 
     174    script_console_add_line(txt); 
     175  } 
    174176        } 
    175177 
Note: See TracChangeset for help on using the changeset viewer.