Skip to content

Commit

Permalink
Minor update to the Usage help text
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Apr 30, 2020
1 parent 56c6a2c commit 60efc71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 60efc71

Please sign in to comment.