Minor update to the Usage help text

This commit is contained in:
Dimitris Panokostas 2020-04-30 20:11:12 +02:00
parent 56c6a2c268
commit 60efc71e39
2 changed files with 4 additions and 3 deletions

View file

@ -524,8 +524,9 @@ void usage()
std::cout << " -f <file> Load a configuration file." << std::endl;
std::cout << " -config=<file> Load a configuration file." << std::endl;
std::cout << " -model=<Amiga Model> Amiga model to emulate, from the QuickStart options." << std::endl;
std::cout << " Available options are: A500, A500P, A1200, A4000." << std::endl;
std::cout << " -autoload=<file> Load a WHDLoad game or .CUE CD32 image." << std::endl;
std::cout << " Available options are: A500, A500P, A1200, A4000 and CD32." << std::endl;
std::cout << " -autoload=<file> Load a WHDLoad game or .CUE CD32 image using the WHDBooter." << std::endl;
std::cout << " -cdimage=<file> Load the CD image provided when starting emulation (for CD32)." << std::endl;
std::cout << " -statefile=<file> Load a save state file." << std::endl;
std::cout << " -s <config param>=<value> Set the configuration parameter with value." << std::endl;
std::cout << " Edit a configuration file in order to know valid parameters and settings." << std::endl;

View file

@ -22,7 +22,7 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)
#define AMIBERRYVERSION _T("Amiberry v3.1.3 (2020-03-26)")
#define AMIBERRYVERSION _T("Amiberry v3.1.3.1 (2020-04-30)")
#define AMIBERRYDATE MAKEBD(2020, 03, 26)
extern std::string get_version_string();