예제 #1
0
파일: support.c 프로젝트: ApolloniaUK/PUAE
int machdep_parse_option (struct uae_prefs *p, const char *option, const char *value)
{
    return cfgfile_yesno (option, value, "use_tbc", &p->use_processor_clock);
}
예제 #2
0
파일: svga.c 프로젝트: Pa0l0ne/Amiga360
int gfx_parse_option (struct uae_prefs *p, const char *option, const char *value)
{
    return (cfgfile_yesno (option, value, "no_linear", &p->svga_no_linear));
}
예제 #3
0
파일: support.c 프로젝트: agwatic/PUAE
int machdep_parse_option (struct uae_prefs *p, const char *option, const char *value)
{
#ifdef HAVE_MACHDEP_TIMER
    return cfgfile_yesno (option, value, "use_tsc", &p->use_processor_clock);
#endif
}