diff --git a/config.template b/config.template index 1c75e7c..0186e50 100644 --- a/config.template +++ b/config.template @@ -8,5 +8,4 @@ s6d2 = s7d1 = -g_limit_speed = 2 diff --git a/doc/web/buildit.sh b/doc/web/buildit.sh index a09252d..a42e7c6 100644 --- a/doc/web/buildit.sh +++ b/doc/web/buildit.sh @@ -1,2 +1,2 @@ -#!/bin/sh -mvn site +#!/bin/sh +mvn site diff --git a/doc/web/src/site/apt/operating.apt b/doc/web/src/site/apt/operating.apt index 22f427d..248fc56 100644 --- a/doc/web/src/site/apt/operating.apt +++ b/doc/web/src/site/apt/operating.apt @@ -16,7 +16,7 @@ order to legally use a ROM file that you may find on the internet. The distribution comes with the full source code for all platforms in the src/ directory, the Windows executable as gsportwin.exe, and the Mac OS X -executable as GSportMac.app. +executable as GSport.app. See the GSport project page on Sourceforge.net for more information about compiling for other platforms. @@ -34,7 +34,7 @@ on a Mac--GSport will offer to make it for you if it cannot find one. Start GSport by Double-clicking the GSportMac icon on a Mac, or by running the executable (<<>> on Windows, and <<>> on Linux). GSportMac can be run by the Terminal window on a Mac as well (which enables access to -more debug information) by typing: "./GSportMac.app/Contents/MacOS/GSportMac". +more debug information) by typing: "./GSport.app/Contents/MacOS/GSportMac". Assuming all goes well, GSport will then boot up but probably not find any disk images. See below for how to tell GSport what disk images to use. diff --git a/src/macdriver.c b/src/macdriver.c index a41aaa5..127e297 100644 --- a/src/macdriver.c +++ b/src/macdriver.c @@ -240,7 +240,7 @@ x_show_alert(int is_fatal, const char *str) if(str) { // Provide an extra option--create a file cfstrref2 = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, - CFSTR("Create ~/Library/GSport/%s"), str); + CFSTR("Create ~/%s"), str); alert_param.otherText = cfstrref2; } okstrref = CFSTR("Click OK to continue"); diff --git a/src/sim65816.c b/src/sim65816.c index aa29faf..da98552 100644 --- a/src/sim65816.c +++ b/src/sim65816.c @@ -1381,7 +1381,7 @@ double g_dtime_this_vbl_array[60]; double g_dtime_exp_array[60]; double g_dtime_pmhz_array[60]; double g_dtime_eff_pmhz_array[60]; -int g_limit_speed = 0; +int g_limit_speed = 2; double sim_time[60]; double g_sim_sum = 0.0;