Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Chore] Bump copyright date from 2024 to 2025 #1833

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions LICENSES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
R"(

PCSX-Redux, Copyright (C) 2019-2024 [PCSX-Redux authors](AUTHORS)
PCSX-Redux, Copyright (C) 2019-2025 [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-2024 [PCSX-Redux authors](AUTHORS)
OpenBIOS, Copyright (C) 2019-2025 [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.
Expand Down
2 changes: 1 addition & 1 deletion src/core/r3000a.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

int PCSX::R3000Acpu::psxInit() {
g_system->printf(_("PCSX-Redux booting\n"));
g_system->printf(_("Copyright (C) 2019-%i PCSX-Redux authors\n"), 2024);
g_system->printf(_("Copyright (C) 2019-%i PCSX-Redux authors\n"), 2025);
const auto& args = g_system->getArgs();

if (g_emulator->settings.get<Emulator::SettingDynarec>()) {
Expand Down
2 changes: 1 addition & 1 deletion src/mips/openbios/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ static void boot(char *systemCnfPath, char *binaryPath) {
}
buildIDstring[count * 2] = 0;
}
psxprintf("PS-X Realtime Kernel OpenBios - build id %s.\nCopyright (C) 2019-2024 PCSX-Redux authors.\n",
psxprintf("PS-X Realtime Kernel OpenBios - build id %s.\nCopyright (C) 2019-2025 PCSX-Redux authors.\n",
buildIDstring);
}
POST = 6;
Expand Down
Loading