|
|
| version 1.30, 2008/03/18 14:47:23 | version 1.34, 2011/01/15 18:43:13 |
|---|---|
| Line 109 NP2OSCFG np2oscfg = { | Line 109 NP2OSCFG np2oscfg = { |
| MMXFLAG_DISABLE, /* disablemmx */ | MMXFLAG_DISABLE, /* disablemmx */ |
| INTERP_NEAREST, /* drawinterp */ | INTERP_NEAREST, /* drawinterp */ |
| 0, /* F11KEY */ | 0, /* F11KEY */ |
| FALSE, /* cfgreadonly */ | |
| }; | }; |
| volatile sig_atomic_t np2running = 0; | volatile sig_atomic_t np2running = 0; |
| Line 128 char bmpfilefolder[MAX_PATH]; | Line 130 char bmpfilefolder[MAX_PATH]; |
| char modulefile[MAX_PATH]; | char modulefile[MAX_PATH]; |
| char statpath[MAX_PATH]; | char statpath[MAX_PATH]; |
| char np2appname[MAX_PATH] = "np2"; | |
| const char np2flagext[] = "s%02d"; | const char np2flagext[] = "s%02d"; |
| const char np2resumeext[] = "sav"; | const char np2resumeext[] = "sav"; |
| Line 136 const char np2resumeext[] = "sav"; | Line 139 const char np2resumeext[] = "sav"; |
| #endif | #endif |
| char fontname[1024] = FONTFACE; | char fontname[1024] = FONTFACE; |
| #ifndef FONTNAME_DEFAULT | |
| #define FONTNAME_DEFAULT "./default.ttf" | |
| #endif | |
| char fontfilename[MAX_PATH] = FONTNAME_DEFAULT; | |
| char timidity_cfgfile_path[MAX_PATH]; | char timidity_cfgfile_path[MAX_PATH]; |
| int verbose = 0; | int verbose = 0; |
| Line 161 getstatfilename(char* path, const char* | Line 159 getstatfilename(char* path, const char* |
| /* | /* |
| * default: | * default: |
| * e.g. resume: "/home/user_name/.np2/sav/sav" | * e.g. resume: "/home/user_name/.np2/sav/np2.sav" |
| * statpath: "/home/user_name/.np2/sav/s00" | * statpath: "/home/user_name/.np2/sav/np2.s00" |
| * config: "/home/user_name/.np2/np2rc" | |
| * | * |
| * --config option: | * --config option: |
| * e.g. resume: "/config_file_path/sav" | * e.g. resume: "/config_file_path/sav/np2.sav" |
| * statpath: "/config_file_path/s00" | * statpath: "/config_file_path/sav/np2.s00" |
| * config: "/config_file_path/config_file_name" | * config: "/config_file_path/config_file_name" |
| */ | */ |
| file_cpyname(path, statpath, size); | file_cpyname(path, statpath, size); |
| file_catname(path, ".", size); | |
| file_catname(path, ext, size); | file_catname(path, ext, size); |
| } | } |
| Line 312 int | Line 312 int |
| mainloop(void *p) | mainloop(void *p) |
| { | { |
| UNUSED(p); | |
| if (np2oscfg.NOWAIT) { | if (np2oscfg.NOWAIT) { |
| joymng_sync(); | joymng_sync(); |
| mousemng_callback(); | mousemng_callback(); |