'tis that time of the year again.

This commit is contained in:
Nicolas Pixel Noble 2023-12-31 10:53:35 -08:00
parent d80f9e2690
commit 2a80e50292
3 changed files with 4 additions and 4 deletions

View file

@ -1,11 +1,11 @@
R"(
PCSX-Redux, Copyright (C) 2019-2023 [PCSX-Redux authors](AUTHORS)
PCSX-Redux, Copyright (C) 2019-2024 [PCSX-Redux authors](AUTHORS)
PCSX-Redux comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See [the license](https://github.com/grumpycoders/pcsx-redux/blob/main/LICENSE) for details.
OpenBIOS, Copyright (C) 2019-2023 [PCSX-Redux authors](AUTHORS)
OpenBIOS, Copyright (C) 2019-2024 [PCSX-Redux authors](AUTHORS)
OpenBIOS comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See [the license](https://github.com/grumpycoders/pcsx-redux/blob/main/src/mips/LICENSE) for details.

View file

@ -37,7 +37,7 @@
int PCSX::R3000Acpu::psxInit() {
g_system->printf(_("PCSX-Redux booting\n"));
g_system->printf(_("Copyright (C) 2019-2023 PCSX-Redux authors\n"));
g_system->printf(_("Copyright (C) 2019-2024 PCSX-Redux authors\n"));
const auto& args = g_system->getArgs();
if (g_emulator->settings.get<Emulator::SettingDynarec>()) {

View file

@ -314,7 +314,7 @@ static void boot(char *systemCnfPath, char *binaryPath) {
}
buildIDstring[count * 2] = 0;
}
psxprintf("PS-X Realtime Kernel OpenBios - build id %s.\nCopyright (C) 2019-2023 PCSX-Redux authors.\n",
psxprintf("PS-X Realtime Kernel OpenBios - build id %s.\nCopyright (C) 2019-2024 PCSX-Redux authors.\n",
buildIDstring);
}
POST = 6;