Skip to content

Commit

Permalink
Merge pull request 86Box#3980 from lemondrops/year_update
Browse files Browse the repository at this point in the history
Update the default copyright year
  • Loading branch information
OBattler authored Jan 1, 2024
2 parents 4324650 + b63bf09 commit 4fa19c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ if(NOT EMU_BUILD_NUM)
set(EMU_BUILD_NUM 0)
endif()
if(NOT EMU_COPYRIGHT_YEAR)
set(EMU_COPYRIGHT_YEAR 2023)
set(EMU_COPYRIGHT_YEAR 2024)
endif()

add_subdirectory(src)
3 changes: 2 additions & 1 deletion src/device/mouse_serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <86box/serial.h>
#include <86box/mouse.h>
#include <86box/plat.h>
#include <86box/version.h>

#define SERMOUSE_PORT 0 /* attach to Serial0 */

Expand Down Expand Up @@ -537,7 +538,7 @@ ltsermouse_process_command(mouse_t *dev)
[FORMAT_HEX] = 0x04,
[FORMAT_MS_4BYTE] = 0x08, /* Guess */
[FORMAT_MS_WHEEL] = 0x08 }; /* Guess */
const char *copr = "\r\n(C) 2023 86Box, Revision 3.0";
const char *copr = "\r\n(C) " COPYRIGHT_YEAR " 86Box, Revision 3.0";

mouse_serial_log("ltsermouse_process_command(): %02X\n", dev->ib);
dev->command = dev->ib;
Expand Down
2 changes: 1 addition & 1 deletion src/include_make/86box/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#define EMU_VERSION_FULL EMU_VERSION
#define EMU_VERSION_FULL_W EMU_VERSION_W

#define COPYRIGHT_YEAR "2022"
#define COPYRIGHT_YEAR "2024"

/* Web URL info. */
#define EMU_SITE "86box.net"
Expand Down

0 comments on commit 4fa19c6

Please sign in to comment.