Skip to content

Commit

Permalink
Updated version strings to v4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Apr 1, 2021
1 parent 96d8494 commit fb6f770
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/include/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "traps.h"

#define UAEMAJOR 4
#define UAEMINOR 5
#define UAEMINOR 0
#define UAESUBREV 0

#define MAX_AMIGADISPLAYS 4
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#include <sys/ioctl.h>
#include "keyboard.h"

static const char __ver[40] = "$VER: Amiberry 4.0 RC (2021-03-24)";
static const char __ver[40] = "$VER: Amiberry 4.0 (2021-04-01)";
long int version = 256 * 65536L * UAEMAJOR + 65536L * UAEMINOR + UAESUBREV;

struct uae_prefs currprefs, changed_prefs;
Expand Down
4 changes: 2 additions & 2 deletions src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)

#define AMIBERRYVERSION _T("Amiberry v4.0 RC (2021-03-24)")
#define AMIBERRYDATE MAKEBD(2021, 3, 24)
#define AMIBERRYVERSION _T("Amiberry v4.0 (2021-04-01)")
#define AMIBERRYDATE MAKEBD(2021, 4, 1)

#define IHF_WINDOWHIDDEN 6

Expand Down

0 comments on commit fb6f770

Please sign in to comment.