Skip to content

Commit

Permalink
Updated version date
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Dec 10, 2023
1 parent 2aec54e commit 13c9f46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ else ifeq ($(PLATFORM),orangepi-zero)
# Otherwise we'll get compilation errors, check https://tls.mbed.org/kb/development/arm-thumb-error-r7-cannot-be-used-in-asm-here
# quote: The assembly code in bn_mul.h is optimized for the ARM platform and uses some registers, including r7 to efficiently do an operation. GCC also uses r7 as the frame pointer under ARM Thumb assembly.
CFLAGS += -fomit-frame-pointer
endif
endif

# Odroid XU4 (SDL2)
else ifeq ($(PLATFORM),xu4)
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
#include "fsdb_host.h"
#include "keyboard.h"

static const char __ver[40] = "$VER: Amiberry 5.6.5 (2023-11-29)";
static const char __ver[40] = "$VER: Amiberry 5.6.5 (2023-12-10)";
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 v5.6.5 (2023-11-29)")
#define AMIBERRYDATE MAKEBD(2023, 11, 29)
#define AMIBERRYVERSION _T("Amiberry v5.6.5 (2023-12-10)")
#define AMIBERRYDATE MAKEBD(2023, 12, 10)
#define COPYRIGHT _T("Copyright (C) 2016-2023 Dimitris Panokostas")

#define IHF_WINDOWHIDDEN 6
Expand Down

0 comments on commit 13c9f46

Please sign in to comment.