Search
lxdream.org :: lxdream/src/main.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/main.c
changeset 968:6fb1481859a4
prev866:86cd01c2b2d3
next998:1754a8c6a9cf
author nkeynes
date Wed Mar 04 23:12:21 2009 +0000 (15 years ago)
permissions -rw-r--r--
last change Move xltcache to xlat/ src directory
Commit new and improved x86 opcode file - cleaned up and added support for amd64 extended registers
file annotate diff log raw
1.1 --- a/src/main.c Mon Oct 06 01:05:12 2008 +0000
1.2 +++ b/src/main.c Wed Mar 04 23:12:21 2009 +0000
1.3 @@ -63,12 +63,12 @@
1.4 gboolean show_debugger = FALSE;
1.5 extern uint32_t sh4_cpu_multiplier;
1.6
1.7 -void print_version()
1.8 +static void print_version()
1.9 {
1.10 printf( "lxdream %s\n", lxdream_full_version );
1.11 }
1.12
1.13 -void print_usage()
1.14 +static void print_usage()
1.15 {
1.16 print_version();
1.17 printf( "Usage: lxdream %s [options] [disc-file] [program-file]\n\n", lxdream_full_version );
1.18 @@ -92,7 +92,7 @@
1.19 printf( " -x %s\n", _("Disable the SH4 translator") );
1.20 }
1.21
1.22 -void bind_gettext_domain()
1.23 +static void bind_gettext_domain()
1.24 {
1.25 #ifdef ENABLE_NLS
1.26 bindtextdomain( PACKAGE, get_locale_path() );
.