trunk/src/emu/emuopts.c
r245110 | r245111 | |
61 | 61 | { OPTION_RECORD ";rec", NULL, OPTION_STRING, "record an input file" }, |
62 | 62 | { OPTION_MNGWRITE, NULL, OPTION_STRING, "optional filename to write a MNG movie of the current session" }, |
63 | 63 | { OPTION_AVIWRITE, NULL, OPTION_STRING, "optional filename to write an AVI movie of the current session" }, |
| 64 | #ifdef MAME_DEBUG |
| 65 | { OPTION_DUMMYWRITE, "0", OPTION_BOOLEAN, "indicates if a snapshot should be created if each frame" }, |
| 66 | #endif |
64 | 67 | { OPTION_WAVWRITE, NULL, OPTION_STRING, "optional filename to write a WAV file of the current session" }, |
65 | 68 | { OPTION_SNAPNAME, "%g/%i", OPTION_STRING, "override of the default snapshot/movie naming; %g == gamename, %i == index" }, |
66 | 69 | { OPTION_SNAPSIZE, "auto", OPTION_STRING, "specify snapshot/movie resolution (<width>x<height>) or 'auto' to use minimal size " }, |
r245110 | r245111 | |
68 | 71 | { OPTION_SNAPBILINEAR, "1", OPTION_BOOLEAN, "specify if the snapshot/movie should have bilinear filtering applied" }, |
69 | 72 | { OPTION_STATENAME, "%g", OPTION_STRING, "override of the default state subfolder naming; %g == gamename" }, |
70 | 73 | { OPTION_BURNIN, "0", OPTION_BOOLEAN, "create burn-in snapshots for each screen" }, |
71 | | { OPTION_DUMMYWRITE, "0", OPTION_BOOLEAN, "indicates if a snapshot should be created if each frame" }, |
72 | 74 | |
73 | 75 | // performance options |
74 | 76 | { NULL, NULL, OPTION_HEADER, "CORE PERFORMANCE OPTIONS" }, |
trunk/src/emu/emuopts.h
r245110 | r245111 | |
73 | 73 | #define OPTION_RECORD "record" |
74 | 74 | #define OPTION_MNGWRITE "mngwrite" |
75 | 75 | #define OPTION_AVIWRITE "aviwrite" |
| 76 | #ifdef MAME_DEBUG |
76 | 77 | #define OPTION_DUMMYWRITE "dummywrite" |
| 78 | #endif |
77 | 79 | #define OPTION_WAVWRITE "wavwrite" |
78 | 80 | #define OPTION_SNAPNAME "snapname" |
79 | 81 | #define OPTION_SNAPSIZE "snapsize" |
r245110 | r245111 | |
242 | 244 | const char *record() const { return value(OPTION_RECORD); } |
243 | 245 | const char *mng_write() const { return value(OPTION_MNGWRITE); } |
244 | 246 | const char *avi_write() const { return value(OPTION_AVIWRITE); } |
| 247 | #ifdef MAME_DEBUG |
245 | 248 | bool dummy_write() const { return bool_value(OPTION_DUMMYWRITE); } |
| 249 | #endif |
246 | 250 | const char *wav_write() const { return value(OPTION_WAVWRITE); } |
247 | 251 | const char *snap_name() const { return value(OPTION_SNAPNAME); } |
248 | 252 | const char *snap_size() const { return value(OPTION_SNAPSIZE); } |