1.1 --- a/src/main.c Tue Jan 01 08:37:26 2008 +0000
1.2 +++ b/src/main.c Mon Jan 14 09:04:03 2008 +0000
1.5 #define S3M_PLAYER "s3mplay.bin"
1.7 -char *option_list = "a:m:s:A:V:v:puhbd:c:t:T:xD";
1.8 +char *option_list = "a:m:s:A:V:v:puhbd:c:t:T:xDn";
1.9 struct option longopts[1] = { { NULL, 0, 0, 0 } };
1.10 char *aica_program = NULL;
1.11 char *s3m_file = NULL;
1.13 char *audio_driver_name = NULL;
1.14 char *trace_regions = NULL;
1.15 gboolean start_immediately = FALSE;
1.16 +gboolean no_start = FALSE;
1.17 gboolean headless = FALSE;
1.18 gboolean without_bios = FALSE;
1.19 gboolean use_xlat = TRUE;
1.21 t = strtod(optarg, NULL);
1.22 sh4_cpu_multiplier = (int)(1000.0/t);
1.24 + case 'n': /* Don't start immediately */
1.26 + start_immediately = FALSE;
1.28 case 's': /* AICA-only w/ S3M player */
1.29 aica_program = S3M_PLAYER;
1.33 case 'p': /* Start immediately */
1.34 start_immediately = TRUE;
1.37 case 'u': /* Allow unsafe dcload syscalls */
1.38 dcload_set_allow_unsafe(TRUE);
1.41 ERROR( "Unrecognized file '%s'", argv[optind] );
1.43 - start_immediately = ok;
1.45 + start_immediately = ok;
1.49 if( disc_file != NULL ) {