Search
lxdream.org :: lxdream/src/main.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/main.c
changeset 402:85fd4a4582be
prev392:39e596b3b6dd
next414:fd8e96bc513e
author nkeynes
date Fri Sep 28 07:24:14 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add GLSL loader framework
file annotate diff log raw
1.1 --- a/src/main.c Tue Sep 18 10:48:57 2007 +0000
1.2 +++ b/src/main.c Fri Sep 28 07:24:14 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: main.c,v 1.24 2007-09-18 10:48:57 nkeynes Exp $
1.6 + * $Id: main.c,v 1.25 2007-09-20 08:42:40 nkeynes Exp $
1.7 *
1.8 * Main program, initializes dreamcast and gui, then passes control off to
1.9 * the gtk main loop (currently).
1.10 @@ -46,7 +46,7 @@
1.11 gboolean start_immediately = FALSE;
1.12 gboolean headless = FALSE;
1.13 gboolean without_bios = FALSE;
1.14 -gboolean use_xlat = FALSE;
1.15 +gboolean use_xlat = TRUE;
1.16 gboolean show_debugger = FALSE;
1.17 uint32_t time_secs = 0;
1.18 uint32_t time_nanos = 0;
1.19 @@ -109,8 +109,8 @@
1.20 time_secs = (uint32_t)t;
1.21 time_nanos = (int)((t - time_secs) * 1000000000);
1.22 break;
1.23 - case 'x': /* Use experimental translator */
1.24 - use_xlat = TRUE;
1.25 + case 'x': /* Disable translator */
1.26 + use_xlat = FALSE;
1.27 break;
1.28 }
1.29 }
.