X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/e9049c3e14dd967611d9b06a47d0b8672819504a..5fa7aa73305908579b14bd1dc27417352bf5acdf:/src/gui/app.cpp diff --git a/src/gui/app.cpp b/src/gui/app.cpp index 3200468..b9903e0 100644 --- a/src/gui/app.cpp +++ b/src/gui/app.cpp @@ -13,12 +13,11 @@ // JLH 01/21/2011 Added SDL initialization // JLH 06/26/2011 Added fix to keep SDL from hijacking main() on win32 // JLH 05/24/2012 Added option switches -// JLH 03/05/2013 Fixed console redireciton on win32 platform :-P -// JPM 06/06/2016 Visual Studio support -// JPM 06/19/2016 Soft debugger support (--debugger) +// JLH 03/05/2013 Fixed console redirection on win32 platform :-P +// JPM Sept./2016 Visual Studio support, and Soft debugger support (--debugger) // JPM 09/ /2017 Added option (--dram-max) to support 8MB ram (which doesn't exist) -// JPM 09/06/2017 Added the 'Rx' word to the emulator name and updated the credits line -// JPM 09/08/2017 Added option (--es-all, --es-ui, --es-alpine & --es-debugger) to support the erase settings +// JPM Sept./2017 Added the 'Rx' word to the emulator name, updated the credits line, added option (--es-all, --es-ui, --es-alpine & --es-debugger) to support the erase settings +// JPM 10/09/2018 Added the Rx version's contact in the help text // #include "app.h" @@ -179,6 +178,7 @@ bool ParseCommandLine(int argc, char * argv[]) "Based upon the work by James Hammons (Linux/WIN32), Niels Wagenaar (Linux/WIN32),\n" "Carwin Jones (BeOS), and Adam Green (MacOS)\n" "Contact: http://sdlemu.ngemu.com/ | sdlemu@ngemu.com\n" + "Contact: https://github.com/djipi/Virtual-Jaguar-Rx | djipi.mari@gmail.com\n" "\n" "Usage:\n" " virtualjaguar [] [switches]\n" @@ -191,7 +191,7 @@ bool ParseCommandLine(int argc, char * argv[]) " --pal -p PAL mode\n" " --ntsc -n NTSC mode\n" " --dram-max Set DRAM size to 8MB\n" - " --bios -b Boot using Jagaur BIOS\n" + " --bios -b Boot using Jaguar BIOS\n" " --no-bios Do not use Jaguar BIOS\n" " --gpu -g Enable GPU\n" " --no-gpu Disable GPU\n" @@ -281,7 +281,7 @@ bool ParseCommandLine(int argc, char * argv[]) // DRAM size max if (strcmp(argv[i], "--dram-max") == 0) { - printf("DRAM size set at 8 Mbytes.\n"); + printf("DRAM size set at 8 MBytes.\n"); vjs.DRAM_size = 0x800000; }