diff --git a/.gitlab/ci/jobs/alpine-3-gcc-dedicated.yml b/.gitlab/ci/jobs/alpine-3-gcc-dedicated.yml index 3401b6996..b73d46260 100644 --- a/.gitlab/ci/jobs/alpine-3-gcc-dedicated.yml +++ b/.gitlab/ci/jobs/alpine-3-gcc-dedicated.yml @@ -3,8 +3,8 @@ Alpine 3 GCC Dedicated: artifacts: paths: - - "build.alpine3ded/bin/" - - "build.alpine3ded/src/config.h" + - "build.cmake/bin/" + - "build.cmake/src/config.h" expose_as: "Apline-3-Dedicated" name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Apline-3-Dedicated" @@ -12,7 +12,7 @@ Alpine 3 GCC Dedicated: - - | # apk_toolchain echo -e "\e[0Ksection_start:`date +%s`:apk_toolchain[collapsed=true]\r\e[0KInstalling toolchain packages" - - apk add gcc + - apk add g++ - | # apk_toolchain echo -e "\e[0Ksection_end:`date +%s`:apk_toolchain\r\e[0K" @@ -20,7 +20,7 @@ Alpine 3 GCC Dedicated: - - | # apk_development echo -e "\e[0Ksection_start:`date +%s`:apk_development[collapsed=true]\r\e[0KInstalling development packages" - - apk add musl-dev libpng-dev curl-dev + - apk add cmake musl-dev sdl2_mixer-dev libpng-dev curl-dev libgme-dev libopenmpt-dev miniupnpc-dev elfutils-dev - | # apk_development echo -e "\e[0Ksection_end:`date +%s`:apk_development\r\e[0K" @@ -28,7 +28,7 @@ Alpine 3 GCC Dedicated: - - | # cmake echo -e "\e[0Ksection_start:`date +%s`:cmake[collapsed=false]\r\e[0KBuilding Makefiles" - - cmake -B build.alpine3ded -DSRB2_CONFIG_ENABLE_WEBM_MOVIES=OFF -G "Unix Makefiles" + - cmake -B build.cmake -DSRB2_CONFIG_ENABLE_WEBM_MOVIES=OFF -DSRB2_CONFIG_DEDICATED=ON - | # cmake echo -e "\e[0Ksection_end:`date +%s`:cmake\r\e[0K" @@ -36,7 +36,7 @@ Alpine 3 GCC Dedicated: - - | # make echo -e "\e[0Ksection_start:`date +%s`:make[collapsed=false]\r\e[0KCompiling SRB2" - - make --directory=build.alpine3ded --keep-going || make --directory=build.alpine3ded --keep-going + - cmake --build build.cmake --parallel 1 --verbose - | # make echo -e "\e[0Ksection_end:`date +%s`:make\r\e[0K" diff --git a/docs/udmf.txt b/docs/udmf.txt index ea6cfb146..ac2c957d9 100644 --- a/docs/udmf.txt +++ b/docs/udmf.txt @@ -1,8 +1,8 @@ =============================================================================== Universal Doom Map Format - Ring Racers extensions v1.0 - 20.09.2024 - Copyright (c) 2024 Sally Cochenour. - Copyright (c) 2024 Kart Krew Dev. + Copyright (C) 2025 Sally Cochenour. + Copyright (C) 2025 Kart Krew Dev. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 diff --git a/src/acs/acsvm.hpp b/src/acs/acsvm.hpp index 84f7ea70d..16f5db72f 100644 --- a/src/acs/acsvm.hpp +++ b/src/acs/acsvm.hpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/call-funcs.cpp b/src/acs/call-funcs.cpp index 2f2de6914..812bfdbb4 100644 --- a/src/acs/call-funcs.cpp +++ b/src/acs/call-funcs.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/call-funcs.hpp b/src/acs/call-funcs.hpp index 4f79d6b6c..8d48bf12f 100644 --- a/src/acs/call-funcs.hpp +++ b/src/acs/call-funcs.hpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/environment.cpp b/src/acs/environment.cpp index b26e69734..223ed74a9 100644 --- a/src/acs/environment.cpp +++ b/src/acs/environment.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/environment.hpp b/src/acs/environment.hpp index 79aa4a4ae..028467bda 100644 --- a/src/acs/environment.hpp +++ b/src/acs/environment.hpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/interface.cpp b/src/acs/interface.cpp index 50eb51241..2e7908f24 100644 --- a/src/acs/interface.cpp +++ b/src/acs/interface.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/interface.h b/src/acs/interface.h index cba20b253..e22c7f08d 100644 --- a/src/acs/interface.h +++ b/src/acs/interface.h @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/stream.cpp b/src/acs/stream.cpp index a4d3e74cf..b5321d682 100644 --- a/src/acs/stream.cpp +++ b/src/acs/stream.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/stream.hpp b/src/acs/stream.hpp index bbd83c7f3..901f736d1 100644 --- a/src/acs/stream.hpp +++ b/src/acs/stream.hpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/thread.cpp b/src/acs/thread.cpp index 81bfbeb76..ae15b08c3 100644 --- a/src/acs/thread.cpp +++ b/src/acs/thread.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/acs/thread.hpp b/src/acs/thread.hpp index 9c4da6626..88d8d4307 100644 --- a/src/acs/thread.hpp +++ b/src/acs/thread.hpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity) -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/am_map.c b/src/am_map.c index 55590edea..a8bf36d24 100644 --- a/src/am_map.c +++ b/src/am_map.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/am_map.h b/src/am_map.h index de9fb0ce8..31bce8f2a 100644 --- a/src/am_map.h +++ b/src/am_map.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/android/i_cdmus.c b/src/android/i_cdmus.c index 52406d72d..6c546d4a2 100644 --- a/src/android/i_cdmus.c +++ b/src/android/i_cdmus.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_main.c b/src/android/i_main.c index b40223fd2..ca6435e88 100644 --- a/src/android/i_main.c +++ b/src/android/i_main.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_net.c b/src/android/i_net.c index 9fba60388..525941e52 100644 --- a/src/android/i_net.c +++ b/src/android/i_net.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_sound.c b/src/android/i_sound.c index 25081feb1..91ec4b02c 100644 --- a/src/android/i_sound.c +++ b/src/android/i_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_system.c b/src/android/i_system.c index 5f045add4..e212ae021 100644 --- a/src/android/i_system.c +++ b/src/android/i_system.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_video.c b/src/android/i_video.c index 055fdd074..bf8e3120e 100644 --- a/src/android/i_video.c +++ b/src/android/i_video.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/android/i_video.h b/src/android/i_video.h index 92158212f..bc364acdd 100644 --- a/src/android/i_video.h +++ b/src/android/i_video.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/archive_wrapper.hpp b/src/archive_wrapper.hpp index 972570ab2..4ba4c4f88 100644 --- a/src/archive_wrapper.hpp +++ b/src/archive_wrapper.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/asm_defs.inc b/src/asm_defs.inc index a2ba4f919..1b418cabd 100644 --- a/src/asm_defs.inc +++ b/src/asm_defs.inc @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/audio/chunk_load.cpp b/src/audio/chunk_load.cpp index 52e84d1d5..312d310bd 100644 --- a/src/audio/chunk_load.cpp +++ b/src/audio/chunk_load.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/chunk_load.hpp b/src/audio/chunk_load.hpp index 391374539..3c97cad70 100644 --- a/src/audio/chunk_load.hpp +++ b/src/audio/chunk_load.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/expand_mono.cpp b/src/audio/expand_mono.cpp index 2ff42a804..da9716044 100644 --- a/src/audio/expand_mono.cpp +++ b/src/audio/expand_mono.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/expand_mono.hpp b/src/audio/expand_mono.hpp index 77e3224d8..c05538f09 100644 --- a/src/audio/expand_mono.hpp +++ b/src/audio/expand_mono.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/filter.cpp b/src/audio/filter.cpp index 2fd3fa4d0..c9693f891 100644 --- a/src/audio/filter.cpp +++ b/src/audio/filter.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/filter.hpp b/src/audio/filter.hpp index 24bbb8ac0..7f79436aa 100644 --- a/src/audio/filter.hpp +++ b/src/audio/filter.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/gain.cpp b/src/audio/gain.cpp index 4e2dcc8ee..6d8d472a8 100644 --- a/src/audio/gain.cpp +++ b/src/audio/gain.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/gain.hpp b/src/audio/gain.hpp index cb7eec380..8050596e5 100644 --- a/src/audio/gain.hpp +++ b/src/audio/gain.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/mixer.cpp b/src/audio/mixer.cpp index 33aa17e02..a944ec61d 100644 --- a/src/audio/mixer.cpp +++ b/src/audio/mixer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/mixer.hpp b/src/audio/mixer.hpp index bde834573..88305699f 100644 --- a/src/audio/mixer.hpp +++ b/src/audio/mixer.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/music_player.cpp b/src/audio/music_player.cpp index bd85cbf86..6f4bf5fec 100644 --- a/src/audio/music_player.cpp +++ b/src/audio/music_player.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/music_player.hpp b/src/audio/music_player.hpp index f9c91429e..5ab502bcd 100644 --- a/src/audio/music_player.hpp +++ b/src/audio/music_player.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/ogg.cpp b/src/audio/ogg.cpp index 3e153febf..436be650b 100644 --- a/src/audio/ogg.cpp +++ b/src/audio/ogg.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/ogg.hpp b/src/audio/ogg.hpp index 3d9bc4307..cbee6405a 100644 --- a/src/audio/ogg.hpp +++ b/src/audio/ogg.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/ogg_player.cpp b/src/audio/ogg_player.cpp index 71c0f0258..c32e80cf1 100644 --- a/src/audio/ogg_player.cpp +++ b/src/audio/ogg_player.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/ogg_player.hpp b/src/audio/ogg_player.hpp index 5e468fec9..1797c16b7 100644 --- a/src/audio/ogg_player.hpp +++ b/src/audio/ogg_player.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/resample.cpp b/src/audio/resample.cpp index 9b73cb38b..3d76f6439 100644 --- a/src/audio/resample.cpp +++ b/src/audio/resample.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/resample.hpp b/src/audio/resample.hpp index 1f8f3782a..7d968ff2e 100644 --- a/src/audio/resample.hpp +++ b/src/audio/resample.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/sample.hpp b/src/audio/sample.hpp index 46e295d68..e9a54a33d 100644 --- a/src/audio/sample.hpp +++ b/src/audio/sample.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/sound_chunk.hpp b/src/audio/sound_chunk.hpp index 33da99677..2d19904da 100644 --- a/src/audio/sound_chunk.hpp +++ b/src/audio/sound_chunk.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/sound_effect_player.cpp b/src/audio/sound_effect_player.cpp index 899e61c63..73d2b6240 100644 --- a/src/audio/sound_effect_player.cpp +++ b/src/audio/sound_effect_player.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/sound_effect_player.hpp b/src/audio/sound_effect_player.hpp index c5b0c146d..3a6f878e6 100644 --- a/src/audio/sound_effect_player.hpp +++ b/src/audio/sound_effect_player.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/source.hpp b/src/audio/source.hpp index 2dab24674..99ec5fb0f 100644 --- a/src/audio/source.hpp +++ b/src/audio/source.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/wav.cpp b/src/audio/wav.cpp index 89c7d1ff3..42d1c1dea 100644 --- a/src/audio/wav.cpp +++ b/src/audio/wav.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/wav.hpp b/src/audio/wav.hpp index 2e44343b9..8dff09f3c 100644 --- a/src/audio/wav.hpp +++ b/src/audio/wav.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/wav_player.cpp b/src/audio/wav_player.cpp index 457754cc9..c23ae4338 100644 --- a/src/audio/wav_player.cpp +++ b/src/audio/wav_player.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/wav_player.hpp b/src/audio/wav_player.hpp index 4ddaefc0b..3beba7c5a 100644 --- a/src/audio/wav_player.hpp +++ b/src/audio/wav_player.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/xmp.cpp b/src/audio/xmp.cpp index 383b06418..d4e619e3e 100644 --- a/src/audio/xmp.cpp +++ b/src/audio/xmp.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/xmp.hpp b/src/audio/xmp.hpp index c924a2965..7b34ccacd 100644 --- a/src/audio/xmp.hpp +++ b/src/audio/xmp.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/xmp_player.cpp b/src/audio/xmp_player.cpp index afd6af97b..9062f0a50 100644 --- a/src/audio/xmp_player.cpp +++ b/src/audio/xmp_player.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/audio/xmp_player.hpp b/src/audio/xmp_player.hpp index 04d2b905a..e3b31bbfa 100644 --- a/src/audio/xmp_player.hpp +++ b/src/audio/xmp_player.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/byteptr.h b/src/byteptr.h index e8deb88a2..56d18e93f 100644 --- a/src/byteptr.h +++ b/src/byteptr.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/command.c b/src/command.c index 0cc78fa7b..3551f436d 100644 --- a/src/command.c +++ b/src/command.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/command.h b/src/command.h index 98c9f4830..0a0a44875 100644 --- a/src/command.h +++ b/src/command.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/comptime.c b/src/comptime.c index a8cfc79de..11269a2fa 100644 --- a/src/comptime.c +++ b/src/comptime.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/console.c b/src/console.c index cde8e3110..1e7585fbc 100644 --- a/src/console.c +++ b/src/console.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/console.h b/src/console.h index e0c1e58e3..4200d4d2a 100644 --- a/src/console.h +++ b/src/console.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 6878c4d1a..b6e0387e9 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/core/memory.h b/src/core/memory.h index 1f24ab033..83cd84d79 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/core/static_vec.hpp b/src/core/static_vec.hpp index dc81e8692..c27b9b397 100644 --- a/src/core/static_vec.hpp +++ b/src/core/static_vec.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/core/thread_pool.cpp b/src/core/thread_pool.cpp index 753628391..eabd46c70 100644 --- a/src/core/thread_pool.cpp +++ b/src/core/thread_pool.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/core/thread_pool.h b/src/core/thread_pool.h index 28f8a4fb3..0c1fc88ad 100644 --- a/src/core/thread_pool.h +++ b/src/core/thread_pool.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/cvars.cpp b/src/cvars.cpp index 1d7b53c35..3ef15987d 100644 --- a/src/cvars.cpp +++ b/src/cvars.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/cxxutil.hpp b/src/cxxutil.hpp index 5ebf1fd21..f91986a93 100644 --- a/src/cxxutil.hpp +++ b/src/cxxutil.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/d_clisrv.c b/src/d_clisrv.c index f978d24b3..2ec42c4de 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_clisrv.h b/src/d_clisrv.h index 2f6fef581..de606acb6 100644 --- a/src/d_clisrv.h +++ b/src/d_clisrv.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_event.h b/src/d_event.h index cd6029683..89dfaeb0b 100644 --- a/src/d_event.h +++ b/src/d_event.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_main.cpp b/src/d_main.cpp index 78af3a439..2b5a80f30 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. @@ -1502,7 +1502,7 @@ void D_SRB2Main(void) // Print GPL notice for our console users (Linux) CONS_Printf( "\n\nDr. Robotnik's Ring Racers\n" - "Copyright (C) 2024 by Kart Krew\n\n" + "Copyright (C) 2025 by Kart Krew\n\n" "This program comes with ABSOLUTELY NO WARRANTY.\n\n" "This is free software, and you are welcome to redistribute it\n" "and/or modify it under the terms of the GNU General Public License\n" diff --git a/src/d_main.h b/src/d_main.h index 8bd4cfd06..2332215d4 100644 --- a/src/d_main.h +++ b/src/d_main.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_net.cpp b/src/d_net.cpp index ab3ede57d..8ede2419c 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_net.h b/src/d_net.h index 7797235bc..b73be1320 100644 --- a/src/d_net.h +++ b/src/d_net.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_netcmd.c b/src/d_netcmd.c index e0f00e472..b10215e50 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_netcmd.h b/src/d_netcmd.h index 70c653254..83a5eec9e 100644 --- a/src/d_netcmd.h +++ b/src/d_netcmd.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_netfil.c b/src/d_netfil.c index 252aaabdf..3deaeeab7 100644 --- a/src/d_netfil.c +++ b/src/d_netfil.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_netfil.h b/src/d_netfil.h index c58972e76..ec7c4a73a 100644 --- a/src/d_netfil.h +++ b/src/d_netfil.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/d_player.h b/src/d_player.h index 594423652..ab606c587 100644 --- a/src/d_player.h +++ b/src/d_player.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_think.h b/src/d_think.h index 1d27cd24d..97b61e257 100644 --- a/src/d_think.h +++ b/src/d_think.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/d_ticcmd.h b/src/d_ticcmd.h index 7787058b3..88ad11c6e 100644 --- a/src/d_ticcmd.h +++ b/src/d_ticcmd.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/deh_lua.c b/src/deh_lua.c index 224d0c010..eed99c22b 100644 --- a/src/deh_lua.c +++ b/src/deh_lua.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/deh_lua.h b/src/deh_lua.h index 412e76ff8..87b3e7436 100644 --- a/src/deh_lua.h +++ b/src/deh_lua.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/deh_soc.c b/src/deh_soc.c index 7cd80eb52..6a937201b 100644 --- a/src/deh_soc.c +++ b/src/deh_soc.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/deh_soc.h b/src/deh_soc.h index 1687054e2..248c7d80d 100644 --- a/src/deh_soc.h +++ b/src/deh_soc.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/deh_tables.c b/src/deh_tables.c index c69d1a9c6..7f8193d5d 100644 --- a/src/deh_tables.c +++ b/src/deh_tables.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // @@ -5196,6 +5196,40 @@ struct int_const_s const INT_CONST[] = { {"FOLLOWERMODE_FLOAT",FOLLOWERMODE_FLOAT}, {"FOLLOWERMODE_GROUND",FOLLOWERMODE_GROUND}, + // tripwirepass_t + {"TRIPWIRE_NONE",TRIPWIRE_NONE}, + {"TRIPWIRE_IGNORE",TRIPWIRE_IGNORE}, + {"TRIPWIRE_BOOST",TRIPWIRE_BOOST}, + {"TRIPWIRE_BLASTER",TRIPWIRE_BLASTER}, + {"TRIPWIRE_CONSUME",TRIPWIRE_CONSUME}, + + // trickstate_t + {"TRICKSTATE_NONE",TRICKSTATE_NONE}, + {"TRICKSTATE_READY",TRICKSTATE_READY}, + {"TRICKSTATE_FORWARD",TRICKSTATE_FORWARD}, + {"TRICKSTATE_RIGHT",TRICKSTATE_RIGHT}, + {"TRICKSTATE_LEFT",TRICKSTATE_LEFT}, + {"TRICKSTATE_BACK",TRICKSTATE_BACK}, + + // items + {"GARDENTOP_MAXGRINDTIME",GARDENTOP_MAXGRINDTIME}, + {"BALLHOGINCREMENT",BALLHOGINCREMENT}, + + // kickstart + {"ACCEL_KICKSTART",ACCEL_KICKSTART}, + + // tripwires + {"TRIPWIRETIME",TRIPWIRETIME}, + + // tricks + {"TRICKMOMZRAMP",TRICKMOMZRAMP}, + {"TRICKLAG",TRICKLAG}, + {"TRICKDELAY",TRICKDELAY}, + + // tumble + {"TUMBLEBOUNCES",TUMBLEBOUNCES}, + {"TUMBLEGRAVITY",TUMBLEGRAVITY}, + // tune flags {"TN_INCLUSIVEFADE",TN_INCLUSIVEFADE}, {"TN_USEMAPVOLUME",TN_USEMAPVOLUME}, diff --git a/src/deh_tables.h b/src/deh_tables.h index 4b8ef69a5..2d44f1f69 100644 --- a/src/deh_tables.h +++ b/src/deh_tables.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/dehacked.c b/src/dehacked.c index ce32a580b..92d59fe85 100644 --- a/src/dehacked.c +++ b/src/dehacked.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/dehacked.h b/src/dehacked.h index f78d31612..6fc55accf 100644 --- a/src/dehacked.h +++ b/src/dehacked.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/discord.c b/src/discord.c index 584ccb7b7..dc5ff44cd 100644 --- a/src/discord.c +++ b/src/discord.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/discord.h b/src/discord.h index 0de232c71..2aa2d43c6 100644 --- a/src/discord.h +++ b/src/discord.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/doomdata.h b/src/doomdata.h index bfcd20d39..c81bc059b 100644 --- a/src/doomdata.h +++ b/src/doomdata.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/doomdef.h b/src/doomdef.h index 62a482f4b..96543e2a8 100644 --- a/src/doomdef.h +++ b/src/doomdef.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/doomstat.h b/src/doomstat.h index 1495951e0..1c188e967 100644 --- a/src/doomstat.h +++ b/src/doomstat.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/doomtype.h b/src/doomtype.h index 2d3558551..36025b319 100644 --- a/src/doomtype.h +++ b/src/doomtype.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_cdmus.c b/src/dummy/i_cdmus.c index eaf11066e..14cf1fda7 100644 --- a/src/dummy/i_cdmus.c +++ b/src/dummy/i_cdmus.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_main.c b/src/dummy/i_main.c index b1ed14fab..617253b48 100644 --- a/src/dummy/i_main.c +++ b/src/dummy/i_main.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_net.c b/src/dummy/i_net.c index cecb6697c..6df06559d 100644 --- a/src/dummy/i_net.c +++ b/src/dummy/i_net.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_sound.c b/src/dummy/i_sound.c index 06dd06c0a..74b052208 100644 --- a/src/dummy/i_sound.c +++ b/src/dummy/i_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_system.c b/src/dummy/i_system.c index e44d5efb6..666b61c43 100644 --- a/src/dummy/i_system.c +++ b/src/dummy/i_system.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/dummy/i_video.c b/src/dummy/i_video.c index 171304818..11e44cdbb 100644 --- a/src/dummy/i_video.c +++ b/src/dummy/i_video.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/endian.h b/src/endian.h index 2d8163ddb..2f67ec3b2 100644 --- a/src/endian.h +++ b/src/endian.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/f_finale.c b/src/f_finale.c index 55fec2aa7..fa118eb42 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/f_finale.h b/src/f_finale.h index 2321748b6..b30572174 100644 --- a/src/f_finale.h +++ b/src/f_finale.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/f_wipe.cpp b/src/f_wipe.cpp index 6f75cb45f..7564a26c3 100644 --- a/src/f_wipe.cpp +++ b/src/f_wipe.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/fastcmp.h b/src/fastcmp.h index 4591a5451..7d89987ee 100644 --- a/src/fastcmp.h +++ b/src/fastcmp.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/filesrch.c b/src/filesrch.c index 9a4c013ef..3f6428bfb 100644 --- a/src/filesrch.c +++ b/src/filesrch.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/filesrch.h b/src/filesrch.h index 650f7cc14..f29360f87 100644 --- a/src/filesrch.h +++ b/src/filesrch.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/font.c b/src/font.c index bf0242cd9..046590efb 100644 --- a/src/font.c +++ b/src/font.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/font.h b/src/font.h index 414e69e6b..d143f6fbc 100644 --- a/src/font.h +++ b/src/font.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2018 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/g_build_ticcmd.cpp b/src/g_build_ticcmd.cpp index 75c475eac..5e1577be6 100644 --- a/src/g_build_ticcmd.cpp +++ b/src/g_build_ticcmd.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/g_demo.cpp b/src/g_demo.cpp index f4f17dc38..06a6a4089 100644 --- a/src/g_demo.cpp +++ b/src/g_demo.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/g_demo.h b/src/g_demo.h index a881aba3a..89bc8d227 100644 --- a/src/g_demo.h +++ b/src/g_demo.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/g_game.c b/src/g_game.c index 1876bf501..b4b673046 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/g_game.h b/src/g_game.h index b022b3e04..f19f819da 100644 --- a/src/g_game.h +++ b/src/g_game.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/g_gamedata.cpp b/src/g_gamedata.cpp index 66269392d..20ba10530 100644 --- a/src/g_gamedata.cpp +++ b/src/g_gamedata.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/g_gamedata.h b/src/g_gamedata.h index c8899c84f..130252692 100644 --- a/src/g_gamedata.h +++ b/src/g_gamedata.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/g_input.c b/src/g_input.c index f91a48d6e..3aa69c5ce 100644 --- a/src/g_input.c +++ b/src/g_input.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/g_input.h b/src/g_input.h index 7c236cce8..d2f2d535c 100644 --- a/src/g_input.h +++ b/src/g_input.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/g_party.cpp b/src/g_party.cpp index 95d260d72..a5dd79270 100644 --- a/src/g_party.cpp +++ b/src/g_party.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/g_party.h b/src/g_party.h index 5b16c1f2b..b5fd5c2b0 100644 --- a/src/g_party.h +++ b/src/g_party.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/g_state.h b/src/g_state.h index 9bdadf52c..89c5beef8 100644 --- a/src/g_state.h +++ b/src/g_state.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/hardware/hw3dsdrv.h b/src/hardware/hw3dsdrv.h index 963d6f577..3753a7095 100644 --- a/src/hardware/hw3dsdrv.h +++ b/src/hardware/hw3dsdrv.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/hw3sound.c b/src/hardware/hw3sound.c index bdba00841..6bd9a9837 100644 --- a/src/hardware/hw3sound.c +++ b/src/hardware/hw3sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/hw3sound.h b/src/hardware/hw3sound.h index d426ac07a..3bed85f56 100644 --- a/src/hardware/hw3sound.h +++ b/src/hardware/hw3sound.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/hw_batching.c b/src/hardware/hw_batching.c index 25595e512..9c0e2f6e9 100644 --- a/src/hardware/hw_batching.c +++ b/src/hardware/hw_batching.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the @@ -130,8 +130,8 @@ void HWR_ProcessPolygon(FSurfaceInfo *pSurf, FOutVector *pOutVerts, FUINT iNumPt polygonArray[polygonArraySize].vertsIndex = unsortedVertexArraySize; polygonArray[polygonArraySize].numVerts = iNumPts; polygonArray[polygonArraySize].polyFlags = PolyFlags; - polygonArray[polygonArraySize].texture = current_texture; polygonArray[polygonArraySize].brightmap = current_brightmap; + polygonArray[polygonArraySize].texture = current_texture; polygonArray[polygonArraySize].shader = shader; polygonArray[polygonArraySize].horizonSpecial = horizonSpecial; polygonArraySize++; @@ -203,9 +203,9 @@ static int comparePolygons(const void *p1, const void *p2) diff = poly1->surf.LightInfo.fade_start - poly2->surf.LightInfo.fade_start; if (diff != 0) return diff; diff = poly1->surf.LightInfo.fade_end - poly2->surf.LightInfo.fade_end; + if (diff != 0) return diff; diff = poly1->surf.LightInfo.directional - poly2->surf.LightInfo.directional; - if (diff != 0) return diff; return diff; } diff --git a/src/hardware/hw_batching.h b/src/hardware/hw_batching.h index ddb4f101d..48f256daa 100644 --- a/src/hardware/hw_batching.h +++ b/src/hardware/hw_batching.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/hardware/hw_bsp.c b/src/hardware/hw_bsp.c index a9dec5666..0b036ead0 100644 --- a/src/hardware/hw_bsp.c +++ b/src/hardware/hw_bsp.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_cache.c b/src/hardware/hw_cache.c index 1ef482cf9..aee197ab5 100644 --- a/src/hardware/hw_cache.c +++ b/src/hardware/hw_cache.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_clip.h b/src/hardware/hw_clip.h index 687839d12..1942f426b 100644 --- a/src/hardware/hw_clip.h +++ b/src/hardware/hw_clip.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/hardware/hw_data.h b/src/hardware/hw_data.h index 0b6df9ae9..69b5d897e 100644 --- a/src/hardware/hw_data.h +++ b/src/hardware/hw_data.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_defs.h b/src/hardware/hw_defs.h index ad3bb0369..1ce225f19 100644 --- a/src/hardware/hw_defs.h +++ b/src/hardware/hw_defs.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_dll.h b/src/hardware/hw_dll.h index c93093679..c967e96ce 100644 --- a/src/hardware/hw_dll.h +++ b/src/hardware/hw_dll.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/hardware/hw_draw.c b/src/hardware/hw_draw.c index 1bb294cff..b26eaa2c2 100644 --- a/src/hardware/hw_draw.c +++ b/src/hardware/hw_draw.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_drv.h b/src/hardware/hw_drv.h index 00243fd0d..c4396c8e5 100644 --- a/src/hardware/hw_drv.h +++ b/src/hardware/hw_drv.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_glob.h b/src/hardware/hw_glob.h index a8f2477cf..07dfb7a16 100644 --- a/src/hardware/hw_glob.h +++ b/src/hardware/hw_glob.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_light.c b/src/hardware/hw_light.c index 3ee0a2f4e..93b19179d 100644 --- a/src/hardware/hw_light.c +++ b/src/hardware/hw_light.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_light.h b/src/hardware/hw_light.h index f29a59ecd..d35edc5dc 100644 --- a/src/hardware/hw_light.h +++ b/src/hardware/hw_light.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_main.c b/src/hardware/hw_main.c index ed62ac236..a622ae7ae 100644 --- a/src/hardware/hw_main.c +++ b/src/hardware/hw_main.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_main.h b/src/hardware/hw_main.h index 2d5a530a7..652b40947 100644 --- a/src/hardware/hw_main.h +++ b/src/hardware/hw_main.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_md2.c b/src/hardware/hw_md2.c index c6c25cb10..7a49edcb8 100644 --- a/src/hardware/hw_md2.c +++ b/src/hardware/hw_md2.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_md2.h b/src/hardware/hw_md2.h index ce2850493..dbfa84aa1 100644 --- a/src/hardware/hw_md2.h +++ b/src/hardware/hw_md2.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/hw_md2load.c b/src/hardware/hw_md2load.c index 3ff9274e3..7530fc91c 100644 --- a/src/hardware/hw_md2load.c +++ b/src/hardware/hw_md2load.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hw_md2load.h b/src/hardware/hw_md2load.h index ed80602dd..fd17fbe85 100644 --- a/src/hardware/hw_md2load.h +++ b/src/hardware/hw_md2load.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hw_md3load.c b/src/hardware/hw_md3load.c index 1c9ca600f..6d2667cd4 100644 --- a/src/hardware/hw_md3load.c +++ b/src/hardware/hw_md3load.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hw_md3load.h b/src/hardware/hw_md3load.h index d53f20643..7d53efd69 100644 --- a/src/hardware/hw_md3load.h +++ b/src/hardware/hw_md3load.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hw_model.c b/src/hardware/hw_model.c index dff088097..b60439930 100644 --- a/src/hardware/hw_model.c +++ b/src/hardware/hw_model.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hw_model.h b/src/hardware/hw_model.h index 3af928fa3..e352f3971 100644 --- a/src/hardware/hw_model.h +++ b/src/hardware/hw_model.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/hws_data.h b/src/hardware/hws_data.h index 711beb21f..24014638d 100644 --- a/src/hardware/hws_data.h +++ b/src/hardware/hws_data.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/hardware/r_minigl/r_minigl.c b/src/hardware/r_minigl/r_minigl.c index 58644d5b1..c0d077e64 100644 --- a/src/hardware/r_minigl/r_minigl.c +++ b/src/hardware/r_minigl/r_minigl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/r_opengl/ogl_win.c b/src/hardware/r_opengl/ogl_win.c index dfc9e58a6..02c785e78 100644 --- a/src/hardware/r_opengl/ogl_win.c +++ b/src/hardware/r_opengl/ogl_win.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/r_opengl/r_opengl.c b/src/hardware/r_opengl/r_opengl.c index 41e6cb6ec..941808f60 100644 --- a/src/hardware/r_opengl/r_opengl.c +++ b/src/hardware/r_opengl/r_opengl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/hardware/r_opengl/r_opengl.h b/src/hardware/r_opengl/r_opengl.h index 74545af6d..a15f2854a 100644 --- a/src/hardware/r_opengl/r_opengl.h +++ b/src/hardware/r_opengl/r_opengl.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/hardware/r_opengl/r_vbo.h b/src/hardware/r_opengl/r_vbo.h index 13e3a8f36..5ba6be5b7 100644 --- a/src/hardware/r_opengl/r_vbo.h +++ b/src/hardware/r_opengl/r_vbo.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/s_ds3d/s_ds3d.c b/src/hardware/s_ds3d/s_ds3d.c index 99d44b6ac..5f2dc4449 100644 --- a/src/hardware/s_ds3d/s_ds3d.c +++ b/src/hardware/s_ds3d/s_ds3d.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/s_fmod/s_fmod.c b/src/hardware/s_fmod/s_fmod.c index adadb9ba9..10ff21f4e 100644 --- a/src/hardware/s_fmod/s_fmod.c +++ b/src/hardware/s_fmod/s_fmod.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/s_openal/s_openal.c b/src/hardware/s_openal/s_openal.c index c4a83170a..800374344 100644 --- a/src/hardware/s_openal/s_openal.c +++ b/src/hardware/s_openal/s_openal.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2001 by DooM Legacy Team. // diff --git a/src/hardware/u_list.c b/src/hardware/u_list.c index 10e9a4e67..4d58af011 100644 --- a/src/hardware/u_list.c +++ b/src/hardware/u_list.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/hardware/u_list.h b/src/hardware/u_list.h index c8d7b4259..a9ac950f0 100644 --- a/src/hardware/u_list.h +++ b/src/hardware/u_list.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2020 by Spaddlewit Inc. // diff --git a/src/http-mserv.c b/src/http-mserv.c index 622d051dc..4f9f9cb39 100644 --- a/src/http-mserv.c +++ b/src/http-mserv.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James R. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James R. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hu_stuff.c b/src/hu_stuff.c index c39b8009d..1588090b2 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/hu_stuff.h b/src/hu_stuff.h index 12230ba56..58f2ef1ae 100644 --- a/src/hu_stuff.h +++ b/src/hu_stuff.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/hud/emerald-win.cpp b/src/hud/emerald-win.cpp index 44d8d1f68..0c108b371 100644 --- a/src/hud/emerald-win.cpp +++ b/src/hud/emerald-win.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hud/input-display.cpp b/src/hud/input-display.cpp index 31779a7ef..383d19a62 100644 --- a/src/hud/input-display.cpp +++ b/src/hud/input-display.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hud/powerup.cpp b/src/hud/powerup.cpp index 0877fc0a3..64cfe6090 100644 --- a/src/hud/powerup.cpp +++ b/src/hud/powerup.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hud/spectator.cpp b/src/hud/spectator.cpp index 44e152d3b..c20d05cf3 100644 --- a/src/hud/spectator.cpp +++ b/src/hud/spectator.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hud/timer.cpp b/src/hud/timer.cpp index d37f79d7c..8f0ccc504 100644 --- a/src/hud/timer.cpp +++ b/src/hud/timer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/blendmode.hpp b/src/hwr2/blendmode.hpp index 2b0e8268d..e5f73999f 100644 --- a/src/hwr2/blendmode.hpp +++ b/src/hwr2/blendmode.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/blit_postimg_screens.cpp b/src/hwr2/blit_postimg_screens.cpp index 61359fe1d..f1804c9d4 100644 --- a/src/hwr2/blit_postimg_screens.cpp +++ b/src/hwr2/blit_postimg_screens.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/blit_postimg_screens.hpp b/src/hwr2/blit_postimg_screens.hpp index 1a7c60eed..88438c248 100644 --- a/src/hwr2/blit_postimg_screens.hpp +++ b/src/hwr2/blit_postimg_screens.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/blit_rect.cpp b/src/hwr2/blit_rect.cpp index a1d3e8c23..189177ec5 100644 --- a/src/hwr2/blit_rect.cpp +++ b/src/hwr2/blit_rect.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/blit_rect.hpp b/src/hwr2/blit_rect.hpp index a444b8354..3d1c32d5f 100644 --- a/src/hwr2/blit_rect.hpp +++ b/src/hwr2/blit_rect.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/hardware_state.hpp b/src/hwr2/hardware_state.hpp index cb2bdbe7c..607e58a2d 100644 --- a/src/hwr2/hardware_state.hpp +++ b/src/hwr2/hardware_state.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/pass_resource_managers.cpp b/src/hwr2/pass_resource_managers.cpp index 84abc5601..c239db01f 100644 --- a/src/hwr2/pass_resource_managers.cpp +++ b/src/hwr2/pass_resource_managers.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/pass_resource_managers.hpp b/src/hwr2/pass_resource_managers.hpp index 79b33db8d..7d03d950e 100644 --- a/src/hwr2/pass_resource_managers.hpp +++ b/src/hwr2/pass_resource_managers.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/patch_atlas.cpp b/src/hwr2/patch_atlas.cpp index 8ee3c165a..fb6b4d965 100644 --- a/src/hwr2/patch_atlas.cpp +++ b/src/hwr2/patch_atlas.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/patch_atlas.hpp b/src/hwr2/patch_atlas.hpp index e57c1daec..e19ff4345 100644 --- a/src/hwr2/patch_atlas.hpp +++ b/src/hwr2/patch_atlas.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/postprocess_wipe.cpp b/src/hwr2/postprocess_wipe.cpp index aafd06e3f..d0adf2349 100644 --- a/src/hwr2/postprocess_wipe.cpp +++ b/src/hwr2/postprocess_wipe.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/postprocess_wipe.hpp b/src/hwr2/postprocess_wipe.hpp index 49141d113..c8beca864 100644 --- a/src/hwr2/postprocess_wipe.hpp +++ b/src/hwr2/postprocess_wipe.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/resource_management.cpp b/src/hwr2/resource_management.cpp index 6e3d15e25..850bebfb2 100644 --- a/src/hwr2/resource_management.cpp +++ b/src/hwr2/resource_management.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/resource_management.hpp b/src/hwr2/resource_management.hpp index b3a5c1589..cf69d7591 100644 --- a/src/hwr2/resource_management.hpp +++ b/src/hwr2/resource_management.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/screen_capture.cpp b/src/hwr2/screen_capture.cpp index a1484b8f6..5fe68d636 100644 --- a/src/hwr2/screen_capture.cpp +++ b/src/hwr2/screen_capture.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/screen_capture.hpp b/src/hwr2/screen_capture.hpp index 0d00f2bbf..dfb7932d1 100644 --- a/src/hwr2/screen_capture.hpp +++ b/src/hwr2/screen_capture.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/software_screen_renderer.cpp b/src/hwr2/software_screen_renderer.cpp index 0ce2bd470..4e8e9116b 100644 --- a/src/hwr2/software_screen_renderer.cpp +++ b/src/hwr2/software_screen_renderer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/software_screen_renderer.hpp b/src/hwr2/software_screen_renderer.hpp index 6b2f85deb..7d3416059 100644 --- a/src/hwr2/software_screen_renderer.hpp +++ b/src/hwr2/software_screen_renderer.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/twodee.cpp b/src/hwr2/twodee.cpp index 2edb1b103..60a78abcb 100644 --- a/src/hwr2/twodee.cpp +++ b/src/hwr2/twodee.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/twodee.hpp b/src/hwr2/twodee.hpp index 0c4d10201..4886fa6f5 100644 --- a/src/hwr2/twodee.hpp +++ b/src/hwr2/twodee.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/twodee_renderer.cpp b/src/hwr2/twodee_renderer.cpp index 39bc284f0..5cf18e3b9 100644 --- a/src/hwr2/twodee_renderer.cpp +++ b/src/hwr2/twodee_renderer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/twodee_renderer.hpp b/src/hwr2/twodee_renderer.hpp index 9632ce119..9c836ce0b 100644 --- a/src/hwr2/twodee_renderer.hpp +++ b/src/hwr2/twodee_renderer.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/upscale_backbuffer.cpp b/src/hwr2/upscale_backbuffer.cpp index d7efb5c3e..3a14c5254 100644 --- a/src/hwr2/upscale_backbuffer.cpp +++ b/src/hwr2/upscale_backbuffer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/hwr2/upscale_backbuffer.hpp b/src/hwr2/upscale_backbuffer.hpp index 0bf087663..f2a4c2699 100644 --- a/src/hwr2/upscale_backbuffer.hpp +++ b/src/hwr2/upscale_backbuffer.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/i_addrinfo.c b/src/i_addrinfo.c index 095731338..8997a47e9 100644 --- a/src/i_addrinfo.c +++ b/src/i_addrinfo.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/i_addrinfo.h b/src/i_addrinfo.h index b435cfaa5..b334112dd 100644 --- a/src/i_addrinfo.h +++ b/src/i_addrinfo.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/i_joy.h b/src/i_joy.h index 5b0362eb0..d7b4d1d8c 100644 --- a/src/i_joy.h +++ b/src/i_joy.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/i_net.h b/src/i_net.h index efe325081..26af8e0d2 100644 --- a/src/i_net.h +++ b/src/i_net.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_sound.h b/src/i_sound.h index 4a5cd79ad..f0c4814e1 100644 --- a/src/i_sound.h +++ b/src/i_sound.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_system.h b/src/i_system.h index a55640017..ec58097fb 100644 --- a/src/i_system.h +++ b/src/i_system.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_tcp.c b/src/i_tcp.c index 25e98b9d0..ce4abb740 100644 --- a/src/i_tcp.c +++ b/src/i_tcp.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/i_tcp.h b/src/i_tcp.h index 305d1e590..dec1a6c4b 100644 --- a/src/i_tcp.h +++ b/src/i_tcp.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/i_tcp_detail.h b/src/i_tcp_detail.h index 037b46fa6..9e3cccda4 100644 --- a/src/i_tcp_detail.h +++ b/src/i_tcp_detail.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/i_threads.h b/src/i_threads.h index a0c210e24..ac16ee520 100644 --- a/src/i_threads.h +++ b/src/i_threads.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. -// Copyright (C) 2024 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/i_time.c b/src/i_time.c index 50d443a6b..bb39070b5 100644 --- a/src/i_time.c +++ b/src/i_time.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_time.h b/src/i_time.h index b3cccfe1b..2459d4d38 100644 --- a/src/i_time.h +++ b/src/i_time.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_video.h b/src/i_video.h index d12d5f782..12150f41e 100644 --- a/src/i_video.h +++ b/src/i_video.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/i_video_common.cpp b/src/i_video_common.cpp index f9cf8f4f7..f52f9298e 100644 --- a/src/i_video_common.cpp +++ b/src/i_video_common.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/info.c b/src/info.c index f1edb476a..a4209be48 100644 --- a/src/info.c +++ b/src/info.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/info.h b/src/info.h index caf5a3444..2ae6aa5c9 100644 --- a/src/info.h +++ b/src/info.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/io/streams.cpp b/src/io/streams.cpp index 6b291f2e6..570159add 100644 --- a/src/io/streams.cpp +++ b/src/io/streams.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/io/streams.hpp b/src/io/streams.hpp index 0c7af047e..ab0da285a 100644 --- a/src/io/streams.hpp +++ b/src/io/streams.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_bans.cpp b/src/k_bans.cpp index bf5e38ec1..bbc86ee57 100644 --- a/src/k_bans.cpp +++ b/src/k_bans.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by AJ "Tyron" Martinez +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // Copyright (C) 2000 by DooM Legacy Team // diff --git a/src/k_bans.h b/src/k_bans.h index f10579674..ca4ddd2f6 100644 --- a/src/k_bans.h +++ b/src/k_bans.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/k_battle.c b/src/k_battle.c index 6886c9371..51f423deb 100644 --- a/src/k_battle.c +++ b/src/k_battle.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_battle.h b/src/k_battle.h index c813efb3c..8f0b5db3a 100644 --- a/src/k_battle.h +++ b/src/k_battle.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_bheap.c b/src/k_bheap.c index b29f022dd..ff2e5bf0c 100644 --- a/src/k_bheap.c +++ b/src/k_bheap.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. @@ -394,7 +394,7 @@ boolean K_BHeapPush(bheap_t *const heap, void *const item, UINT32 value, updatei if (heap->count >= heap->capacity) { size_t newarraycapacity = heap->capacity * 2; - heap->array = Z_Realloc(heap->array, newarraycapacity, PU_STATIC, NULL); + heap->array = Z_Realloc(heap->array, newarraycapacity * sizeof(bheapitem_t), PU_STATIC, NULL); if (heap->array == NULL) { diff --git a/src/k_bheap.h b/src/k_bheap.h index 107aacd0f..3f406e808 100644 --- a/src/k_bheap.h +++ b/src/k_bheap.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_boss.c b/src/k_boss.c index ecdf6a209..314566f8e 100644 --- a/src/k_boss.c +++ b/src/k_boss.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Vivian "toastergrl" Grannell +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_boss.h b/src/k_boss.h index fe42652b1..2a5d94a70 100644 --- a/src/k_boss.h +++ b/src/k_boss.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Vivian "toastergrl" Grannell +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_bot.cpp b/src/k_bot.cpp index e5dc4fd63..c55766189 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_bot.h b/src/k_bot.h index 296617e68..8a4cfe893 100644 --- a/src/k_bot.h +++ b/src/k_bot.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_botitem.cpp b/src/k_botitem.cpp index 4bff3ce40..e3bb56c33 100644 --- a/src/k_botitem.cpp +++ b/src/k_botitem.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_botsearch.cpp b/src/k_botsearch.cpp index fd4de8a95..666e2adcf 100644 --- a/src/k_botsearch.cpp +++ b/src/k_botsearch.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_brightmap.c b/src/k_brightmap.c index 25e9e47c9..1c6a9b6b8 100644 --- a/src/k_brightmap.c +++ b/src/k_brightmap.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_brightmap.h b/src/k_brightmap.h index 1fee05f12..53bda00e0 100644 --- a/src/k_brightmap.h +++ b/src/k_brightmap.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_collide.cpp b/src/k_collide.cpp index b73c0fd5b..3e048234e 100644 --- a/src/k_collide.cpp +++ b/src/k_collide.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_collide.h b/src/k_collide.h index d72b30fd6..770b4af67 100644 --- a/src/k_collide.h +++ b/src/k_collide.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_color.c b/src/k_color.c index dcf6e0fa7..4355d607a 100644 --- a/src/k_color.c +++ b/src/k_color.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_color.h b/src/k_color.h index 3d922ce5f..1ff7f9fb6 100644 --- a/src/k_color.h +++ b/src/k_color.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_credits.cpp b/src/k_credits.cpp index de2565b86..401086b32 100644 --- a/src/k_credits.cpp +++ b/src/k_credits.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_credits.h b/src/k_credits.h index 6e080dc9c..85ab252ac 100644 --- a/src/k_credits.h +++ b/src/k_credits.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_dialogue.cpp b/src/k_dialogue.cpp index ea52a746b..8d9214b6a 100644 --- a/src/k_dialogue.cpp +++ b/src/k_dialogue.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // // This program is free software distributed under the diff --git a/src/k_dialogue.h b/src/k_dialogue.h index b5894f7ee..fca78c627 100644 --- a/src/k_dialogue.h +++ b/src/k_dialogue.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // // This program is free software distributed under the diff --git a/src/k_dialogue.hpp b/src/k_dialogue.hpp index 530748a9c..d0a2a1578 100644 --- a/src/k_dialogue.hpp +++ b/src/k_dialogue.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // // This program is free software distributed under the diff --git a/src/k_director.cpp b/src/k_director.cpp index 00035f023..0a7d221c2 100644 --- a/src/k_director.cpp +++ b/src/k_director.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_director.h b/src/k_director.h index 47d7ea9be..16a8ea937 100644 --- a/src/k_director.h +++ b/src/k_director.h @@ -1,9 +1,9 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. -// +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. +// // This program is free software distributed under the // terms of the GNU General Public License, version 2. // See the 'LICENSE' file for more details. diff --git a/src/k_endcam.cpp b/src/k_endcam.cpp index 378e00cc0..3fb7f65cb 100644 --- a/src/k_endcam.cpp +++ b/src/k_endcam.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_endcam.h b/src/k_endcam.h index e321e6e5b..7807cc88d 100644 --- a/src/k_endcam.h +++ b/src/k_endcam.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_follower.c b/src/k_follower.c index dc02685b6..aee769b95 100644 --- a/src/k_follower.c +++ b/src/k_follower.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_follower.h b/src/k_follower.h index edab92f8e..dc5ca9a72 100644 --- a/src/k_follower.h +++ b/src/k_follower.h @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_grandprix.c b/src/k_grandprix.c index 3ffaab7bb..28ebad3ef 100644 --- a/src/k_grandprix.c +++ b/src/k_grandprix.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_grandprix.h b/src/k_grandprix.h index d16f0eb03..01e7307e9 100644 --- a/src/k_grandprix.h +++ b/src/k_grandprix.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_hitlag.c b/src/k_hitlag.c index 27f8dc7e6..9110f1845 100644 --- a/src/k_hitlag.c +++ b/src/k_hitlag.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_hitlag.h b/src/k_hitlag.h index 62ea19bda..c5c0944d5 100644 --- a/src/k_hitlag.h +++ b/src/k_hitlag.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_hud.cpp b/src/k_hud.cpp index c214680ca..524ad8893 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_hud.h b/src/k_hud.h index acdfc916b..8fb826f78 100644 --- a/src/k_hud.h +++ b/src/k_hud.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_hud_track.cpp b/src/k_hud_track.cpp index 06cc0ad5b..0307babb5 100644 --- a/src/k_hud_track.cpp +++ b/src/k_hud_track.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_kart.c b/src/k_kart.c index a5bd3674a..b315e190c 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2018 by ZarroTsu. // // This program is free software distributed under the diff --git a/src/k_kart.h b/src/k_kart.h index 0a8953ce2..fdd68292d 100644 --- a/src/k_kart.h +++ b/src/k_kart.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2018 by ZarroTsu. // // This program is free software distributed under the diff --git a/src/k_mapuser.c b/src/k_mapuser.c index 22319fd9f..740798bd3 100644 --- a/src/k_mapuser.c +++ b/src/k_mapuser.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_mapuser.h b/src/k_mapuser.h index 6d784d751..40a7e5d85 100644 --- a/src/k_mapuser.h +++ b/src/k_mapuser.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_menu.h b/src/k_menu.h index b61b37cd8..bd2973ff1 100644 --- a/src/k_menu.h +++ b/src/k_menu.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/k_menudraw.c b/src/k_menudraw.c index d047e477b..787b04947 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2020 by Sonic Team Junior. // @@ -1904,7 +1904,7 @@ static boolean M_DrawFollowerSprite(INT16 x, INT16 y, INT32 num, boolean charfli static void M_DrawCharSelectSprite(UINT8 num, INT16 x, INT16 y, boolean charflip) { setup_player_t *p = &setup_player[num]; - UINT8 color; + UINT16 color; UINT8 *colormap; if (p->skin < 0) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 16d255838..0e3b1385d 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/k_objects.h b/src/k_objects.h index cbc2f320e..c661e47d2 100644 --- a/src/k_objects.h +++ b/src/k_objects.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_pathfind.c b/src/k_pathfind.c index 837248b92..52110a8dd 100644 --- a/src/k_pathfind.c +++ b/src/k_pathfind.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_pathfind.h b/src/k_pathfind.h index 70c66a02c..102973299 100644 --- a/src/k_pathfind.h +++ b/src/k_pathfind.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_podium.cpp b/src/k_podium.cpp index e5ca26d8f..29dd5ae4a 100644 --- a/src/k_podium.cpp +++ b/src/k_podium.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_podium.h b/src/k_podium.h index 0dba7fdc6..0b25a21db 100644 --- a/src/k_podium.h +++ b/src/k_podium.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_powerup.cpp b/src/k_powerup.cpp index 49be3e51f..2efd94b84 100644 --- a/src/k_powerup.cpp +++ b/src/k_powerup.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_powerup.h b/src/k_powerup.h index 7ec95eecc..dd0ddf12f 100644 --- a/src/k_powerup.h +++ b/src/k_powerup.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_profiles.cpp b/src/k_profiles.cpp index 66551a85a..1cededc39 100644 --- a/src/k_profiles.cpp +++ b/src/k_profiles.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_profiles.h b/src/k_profiles.h index 4719b3178..9d9e1c3bd 100644 --- a/src/k_profiles.h +++ b/src/k_profiles.h @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_pwrlv.c b/src/k_pwrlv.c index a420bff4e..6291d3a21 100644 --- a/src/k_pwrlv.c +++ b/src/k_pwrlv.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_pwrlv.h b/src/k_pwrlv.h index 9494ed0f4..f0a4d5b01 100644 --- a/src/k_pwrlv.h +++ b/src/k_pwrlv.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_race.c b/src/k_race.c index 430204adb..b41e55021 100644 --- a/src/k_race.c +++ b/src/k_race.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_race.h b/src/k_race.h index 88c9d1266..542acacb0 100644 --- a/src/k_race.h +++ b/src/k_race.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_rank.cpp b/src/k_rank.cpp index 4844440b9..ca6d66e0c 100644 --- a/src/k_rank.cpp +++ b/src/k_rank.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_rank.h b/src/k_rank.h index 4d6974006..fc233fbb0 100644 --- a/src/k_rank.h +++ b/src/k_rank.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_respawn.c b/src/k_respawn.c index e319a7d3a..ae214dbae 100644 --- a/src/k_respawn.c +++ b/src/k_respawn.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_respawn.h b/src/k_respawn.h index a6c0ea09b..fdf4f48e5 100644 --- a/src/k_respawn.h +++ b/src/k_respawn.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_roulette.c b/src/k_roulette.c index 2bb29c5c7..0d30cb2c4 100644 --- a/src/k_roulette.c +++ b/src/k_roulette.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_roulette.h b/src/k_roulette.h index 03a4adb22..6f3054c5e 100644 --- a/src/k_roulette.h +++ b/src/k_roulette.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_serverstats.c b/src/k_serverstats.c index b5107f1c4..4556b84a9 100644 --- a/src/k_serverstats.c +++ b/src/k_serverstats.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/k_serverstats.h b/src/k_serverstats.h index d174beaed..3273351dc 100644 --- a/src/k_serverstats.h +++ b/src/k_serverstats.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_specialstage.c b/src/k_specialstage.c index 6c0ab53e6..93b10a9ba 100644 --- a/src/k_specialstage.c +++ b/src/k_specialstage.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_specialstage.h b/src/k_specialstage.h index b155c1bed..4770c9af8 100644 --- a/src/k_specialstage.h +++ b/src/k_specialstage.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_tally.cpp b/src/k_tally.cpp index a5bfad77c..6c4489528 100644 --- a/src/k_tally.cpp +++ b/src/k_tally.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_tally.h b/src/k_tally.h index 9079103a6..b4f8950ac 100644 --- a/src/k_tally.h +++ b/src/k_tally.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_terrain.c b/src/k_terrain.c index 872d94067..9cc2ac9e2 100644 --- a/src/k_terrain.c +++ b/src/k_terrain.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2021 by ZDoom + GZDoom teams, and contributors // // This program is free software distributed under the diff --git a/src/k_terrain.h b/src/k_terrain.h index 10c862261..d91f20f3d 100644 --- a/src/k_terrain.h +++ b/src/k_terrain.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2021 by ZDoom + GZDoom teams, and contributors // // This program is free software distributed under the diff --git a/src/k_vote.c b/src/k_vote.c index 33bba9c49..fab4f08a2 100644 --- a/src/k_vote.c +++ b/src/k_vote.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_vote.h b/src/k_vote.h index f78310a92..e5e2c6350 100644 --- a/src/k_vote.h +++ b/src/k_vote.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_waypoint.cpp b/src/k_waypoint.cpp index 88d54ae0c..c7e6a8f35 100644 --- a/src/k_waypoint.cpp +++ b/src/k_waypoint.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_waypoint.h b/src/k_waypoint.h index ca4aa351a..41ae1cdf8 100644 --- a/src/k_waypoint.h +++ b/src/k_waypoint.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sean "Sryder" Ryder -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sean "Sryder" Ryder +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_zvote.c b/src/k_zvote.c index 5e2ff2131..be005c110 100644 --- a/src/k_zvote.c +++ b/src/k_zvote.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/k_zvote.h b/src/k_zvote.h index 81baa3039..7ead33772 100644 --- a/src/k_zvote.h +++ b/src/k_zvote.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/keys.h b/src/keys.h index 4bb63be4e..d016d0cc3 100644 --- a/src/keys.h +++ b/src/keys.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/locale/en.po b/src/locale/en.po index d32761b4f..28f1f455e 100644 --- a/src/locale/en.po +++ b/src/locale/en.po @@ -1,6 +1,6 @@ # DR. ROBOTNIK'S RING RACERS #----------------------------------------------------------------------------- -# Copyright (C) 2024 by Kart Krew +# Copyright (C) 2025 by Kart Krew # Copyright (C) 2020 by Sonic Team Junior # # This program is free software distributed under the diff --git a/src/locale/srb2.pot b/src/locale/srb2.pot index 5e4d13b51..ac64aea12 100644 --- a/src/locale/srb2.pot +++ b/src/locale/srb2.pot @@ -1,6 +1,6 @@ # DR. ROBOTNIK'S RING RACERS #----------------------------------------------------------------------------- -# Copyright (C) 2024 by Kart Krew +# Copyright (C) 2025 by Kart Krew # Copyright (C) 2020 by Sonic Team Junior # # This program is free software distributed under the diff --git a/src/lua_baselib.c b/src/lua_baselib.c index 4ee70339b..873056643 100644 --- a/src/lua_baselib.c +++ b/src/lua_baselib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // @@ -3407,7 +3407,7 @@ static int lib_kAddMessage(lua_State *L) INLEVEL if (msg == NULL) return luaL_error(L, "argument #1 not given (expected string)"); - K_AddMessage(msg, interrupt, persist); + K_AddMessage(msg, interrupt, persist); return 0; } diff --git a/src/lua_blockmaplib.c b/src/lua_blockmaplib.c index b0c8a9f74..0b0c050b4 100644 --- a/src/lua_blockmaplib.c +++ b/src/lua_blockmaplib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Iestyn "Monster Iestyn" Jealous. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/lua_consolelib.c b/src/lua_consolelib.c index 274a215f6..f15876acf 100644 --- a/src/lua_consolelib.c +++ b/src/lua_consolelib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_followerlib.c b/src/lua_followerlib.c index 07fe8c998..a1c56d0b7 100644 --- a/src/lua_followerlib.c +++ b/src/lua_followerlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_hook.h b/src/lua_hook.h index 851a82738..12c85be94 100644 --- a/src/lua_hook.h +++ b/src/lua_hook.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_hooklib.c b/src/lua_hooklib.c index bb66f7729..676e40b77 100644 --- a/src/lua_hooklib.c +++ b/src/lua_hooklib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_hud.h b/src/lua_hud.h index 8525aabf4..7416ee324 100644 --- a/src/lua_hud.h +++ b/src/lua_hud.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_hudlib.c b/src/lua_hudlib.c index 999232c35..6b80e61c0 100644 --- a/src/lua_hudlib.c +++ b/src/lua_hudlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // @@ -51,6 +51,7 @@ static const char *const hud_disable_options[] = { "minimap", "item", "position", + "names", "check", // "CHECK" f-zero indicator "minirankings", // Gametype rankings to the left "battlerankingsbumpers", // bumper drawer for battle. Useful if you want to make a custom battle gamemode without bumpers being involved. diff --git a/src/lua_hudlib_drawlist.c b/src/lua_hudlib_drawlist.c index e9120c692..ad5a62bbc 100644 --- a/src/lua_hudlib_drawlist.c +++ b/src/lua_hudlib_drawlist.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_hudlib_drawlist.h b/src/lua_hudlib_drawlist.h index 1ad55ac2a..a090b5507 100644 --- a/src/lua_hudlib_drawlist.h +++ b/src/lua_hudlib_drawlist.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/lua_infolib.c b/src/lua_infolib.c index 4996a4813..8baf1008f 100644 --- a/src/lua_infolib.c +++ b/src/lua_infolib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_libs.h b/src/lua_libs.h index 290be4101..73d7b4f6e 100644 --- a/src/lua_libs.h +++ b/src/lua_libs.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_maplib.c b/src/lua_maplib.c index 406c392fa..89b2e7c4c 100644 --- a/src/lua_maplib.c +++ b/src/lua_maplib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_mathlib.c b/src/lua_mathlib.c index d3a86da20..c6b2110b8 100644 --- a/src/lua_mathlib.c +++ b/src/lua_mathlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_mobjlib.c b/src/lua_mobjlib.c index e8e9f89bd..158909815 100644 --- a/src/lua_mobjlib.c +++ b/src/lua_mobjlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_playerlib.c b/src/lua_playerlib.c index 2b6c7b07e..385000c20 100644 --- a/src/lua_playerlib.c +++ b/src/lua_playerlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // @@ -310,7 +310,7 @@ static int player_get(lua_State *L) lua_pushinteger(L, plr->gateSound); else if (fastcmp(field,"startboost")) lua_pushinteger(L, plr->startboost); - else if (fastcmp(field,"aizdriftstraft")) + else if (fastcmp(field,"aizdriftstrat")) lua_pushinteger(L, plr->aizdriftstrat); else if (fastcmp(field,"aizdriftextend")) lua_pushinteger(L, plr->aizdriftextend); @@ -914,7 +914,7 @@ static int player_set(lua_State *L) plr->gateSound = luaL_checkinteger(L, 3); else if (fastcmp(field,"startboost")) plr->startboost = luaL_checkinteger(L, 3); - else if (fastcmp(field,"aizdriftstraft")) + else if (fastcmp(field,"aizdriftstrat")) plr->aizdriftstrat = luaL_checkinteger(L, 3); else if (fastcmp(field,"aizdrifttilt")) plr->aizdrifttilt = luaL_checkinteger(L, 3); diff --git a/src/lua_polyobjlib.c b/src/lua_polyobjlib.c index ad40b5bcd..31ed678e6 100644 --- a/src/lua_polyobjlib.c +++ b/src/lua_polyobjlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Iestyn "Monster Iestyn" Jealous. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/lua_profile.cpp b/src/lua_profile.cpp index ff28e294e..140833e40 100644 --- a/src/lua_profile.cpp +++ b/src/lua_profile.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/lua_profile.h b/src/lua_profile.h index 20c0bd7f2..e9ef5a151 100644 --- a/src/lua_profile.h +++ b/src/lua_profile.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/lua_script.c b/src/lua_script.c index 335682e15..1f01010cb 100644 --- a/src/lua_script.c +++ b/src/lua_script.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_script.h b/src/lua_script.h index 33c9bfca5..28f0fecad 100644 --- a/src/lua_script.h +++ b/src/lua_script.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2022 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_skinlib.c b/src/lua_skinlib.c index f02a07fab..534249ad9 100644 --- a/src/lua_skinlib.c +++ b/src/lua_skinlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/lua_taglib.c b/src/lua_taglib.c index 79ce038f4..f9a6cdf0e 100644 --- a/src/lua_taglib.c +++ b/src/lua_taglib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by James Robert Roman. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/lua_thinkerlib.c b/src/lua_thinkerlib.c index 351e7c663..919f2f54d 100644 --- a/src/lua_thinkerlib.c +++ b/src/lua_thinkerlib.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by John "JTE" Muniz. // diff --git a/src/m_aatree.c b/src/m_aatree.c index 88f77d6e8..8c0f62c41 100644 --- a/src/m_aatree.c +++ b/src/m_aatree.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_aatree.h b/src/m_aatree.h index 942771bb2..821e983d4 100644 --- a/src/m_aatree.h +++ b/src/m_aatree.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_anigif.c b/src/m_anigif.c index 4a39a820a..4e8428b50 100644 --- a/src/m_anigif.c +++ b/src/m_anigif.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2013 by "Ninji". diff --git a/src/m_anigif.h b/src/m_anigif.h index 3c422658d..13dc16726 100644 --- a/src/m_anigif.h +++ b/src/m_anigif.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire // diff --git a/src/m_argv.c b/src/m_argv.c index 544a9bcaa..a5f465102 100644 --- a/src/m_argv.c +++ b/src/m_argv.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_argv.h b/src/m_argv.h index d6654312a..bd5ec34fb 100644 --- a/src/m_argv.h +++ b/src/m_argv.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_avrecorder.cpp b/src/m_avrecorder.cpp index f4c916c82..efd874b4f 100644 --- a/src/m_avrecorder.cpp +++ b/src/m_avrecorder.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_avrecorder.h b/src/m_avrecorder.h index b33ea2cc6..01bf8ed1a 100644 --- a/src/m_avrecorder.h +++ b/src/m_avrecorder.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_avrecorder.hpp b/src/m_avrecorder.hpp index e98c8e98a..2acc9605c 100644 --- a/src/m_avrecorder.hpp +++ b/src/m_avrecorder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_bbox.c b/src/m_bbox.c index e681c0b7f..6e7956c5d 100644 --- a/src/m_bbox.c +++ b/src/m_bbox.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_bbox.h b/src/m_bbox.h index bad97866a..d044a9ab5 100644 --- a/src/m_bbox.h +++ b/src/m_bbox.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_cheat.c b/src/m_cheat.c index 8fd1f84c8..48b51f412 100644 --- a/src/m_cheat.c +++ b/src/m_cheat.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_cheat.h b/src/m_cheat.h index dcb87f312..8618fc1b1 100644 --- a/src/m_cheat.h +++ b/src/m_cheat.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_cond.c b/src/m_cond.c index 8a27efaa4..6399f0eac 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // diff --git a/src/m_cond.h b/src/m_cond.h index eccd88f5f..10b9e4883 100644 --- a/src/m_cond.h +++ b/src/m_cond.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // diff --git a/src/m_dllist.h b/src/m_dllist.h index 6ae18a698..6a0a60bcd 100644 --- a/src/m_dllist.h +++ b/src/m_dllist.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2005 by James Haley. // diff --git a/src/m_easing.c b/src/m_easing.c index 9237ed8d1..ef48abe51 100644 --- a/src/m_easing.c +++ b/src/m_easing.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2021 by Jaime "Lactozilla" Passos. // Copyright (C) 2021 by Sonic Team Junior. // diff --git a/src/m_easing.h b/src/m_easing.h index 85d07de63..3685ed192 100644 --- a/src/m_easing.h +++ b/src/m_easing.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2021 by Sonic Team Junior. // Copyright (C) 2021 by Jaime "Lactozilla" Passos. // diff --git a/src/m_fixed.c b/src/m_fixed.c index 9c37b485a..e30f50115 100644 --- a/src/m_fixed.c +++ b/src/m_fixed.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_fixed.h b/src/m_fixed.h index a62dc14b0..13c46ac77 100644 --- a/src/m_fixed.h +++ b/src/m_fixed.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_memcpy.c b/src/m_memcpy.c index 67ef3541b..0f3bc237f 100644 --- a/src/m_memcpy.c +++ b/src/m_memcpy.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_misc.cpp b/src/m_misc.cpp index 0591b10b9..d85971f5d 100644 --- a/src/m_misc.cpp +++ b/src/m_misc.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_misc.h b/src/m_misc.h index 75bb4a5c8..9d54e4e68 100644 --- a/src/m_misc.h +++ b/src/m_misc.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/m_perfstats.c b/src/m_perfstats.c index 2ef4480bc..4f3b11a0e 100644 --- a/src/m_perfstats.c +++ b/src/m_perfstats.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/m_perfstats.h b/src/m_perfstats.h index e38a6c19b..6bc1c1d21 100644 --- a/src/m_perfstats.h +++ b/src/m_perfstats.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/m_pw.cpp b/src/m_pw.cpp index 192a7947e..7a60d58fa 100644 --- a/src/m_pw.cpp +++ b/src/m_pw.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_pw.h b/src/m_pw.h index 87efd98aa..05ed304db 100644 --- a/src/m_pw.h +++ b/src/m_pw.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_pw_hash.c b/src/m_pw_hash.c index ed9ca881b..c43397ff5 100644 --- a/src/m_pw_hash.c +++ b/src/m_pw_hash.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. -// Copyright (C) 2024 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_pw_hash.h b/src/m_pw_hash.h index 31bc81357..b89fe2873 100644 --- a/src/m_pw_hash.h +++ b/src/m_pw_hash.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/m_queue.c b/src/m_queue.c index dc9a4044d..183ab7599 100644 --- a/src/m_queue.c +++ b/src/m_queue.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2003 by James Haley. // diff --git a/src/m_queue.h b/src/m_queue.h index 595d503dd..bb7889f21 100644 --- a/src/m_queue.h +++ b/src/m_queue.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // Copyright (C) 2003 by James Haley // diff --git a/src/m_random.c b/src/m_random.c index 36d8582ab..8737c7cdc 100644 --- a/src/m_random.c +++ b/src/m_random.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2000 by DooM Legacy Team. @@ -145,7 +145,7 @@ ATTRINLINE static UINT32 FUNCINLINE __internal_prng__(pr_class_t pr_class) /** Provides a random number within a specified range. * - * \return A random, uniformly distributed number from [0,bound]. + * \return A random, uniformly distributed integer from [0,bound). */ ATTRINLINE static UINT32 FUNCINLINE __internal_prng_bound__(pr_class_t pr_class, UINT32 bound) { diff --git a/src/m_random.h b/src/m_random.h index 412694cde..edc59ee66 100644 --- a/src/m_random.h +++ b/src/m_random.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/m_swap.h b/src/m_swap.h index a5c9ed9b8..9e20408ef 100644 --- a/src/m_swap.h +++ b/src/m_swap.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/math/fixed.hpp b/src/math/fixed.hpp index 01a6b8756..d92071bf0 100644 --- a/src/math/fixed.hpp +++ b/src/math/fixed.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/math/line_equation.hpp b/src/math/line_equation.hpp index beedd2cec..19523f106 100644 --- a/src/math/line_equation.hpp +++ b/src/math/line_equation.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/math/line_segment.hpp b/src/math/line_segment.hpp index 9e63902e8..4d0713ac3 100644 --- a/src/math/line_segment.hpp +++ b/src/math/line_segment.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/math/traits.hpp b/src/math/traits.hpp index 43ec8905d..cbbb7b406 100644 --- a/src/math/traits.hpp +++ b/src/math/traits.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/math/vec.hpp b/src/math/vec.hpp index 73023d484..c6513f402 100644 --- a/src/math/vec.hpp +++ b/src/math/vec.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/audio_encoder.hpp b/src/media/audio_encoder.hpp index bd5e68de6..e6aa583e1 100644 --- a/src/media/audio_encoder.hpp +++ b/src/media/audio_encoder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder.cpp b/src/media/avrecorder.cpp index cfbd8eab1..be28b2175 100644 --- a/src/media/avrecorder.cpp +++ b/src/media/avrecorder.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder.hpp b/src/media/avrecorder.hpp index e2560179d..2c3c9def7 100644 --- a/src/media/avrecorder.hpp +++ b/src/media/avrecorder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder_feedback.cpp b/src/media/avrecorder_feedback.cpp index d1a94d696..38c016b89 100644 --- a/src/media/avrecorder_feedback.cpp +++ b/src/media/avrecorder_feedback.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder_impl.hpp b/src/media/avrecorder_impl.hpp index 12cdb5824..0b7adbe70 100644 --- a/src/media/avrecorder_impl.hpp +++ b/src/media/avrecorder_impl.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder_indexed.cpp b/src/media/avrecorder_indexed.cpp index 3c25a1073..0df1c2ea6 100644 --- a/src/media/avrecorder_indexed.cpp +++ b/src/media/avrecorder_indexed.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/avrecorder_queue.cpp b/src/media/avrecorder_queue.cpp index 545249635..34759a2d8 100644 --- a/src/media/avrecorder_queue.cpp +++ b/src/media/avrecorder_queue.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/cfile.cpp b/src/media/cfile.cpp index 272217e37..ea2bcc434 100644 --- a/src/media/cfile.cpp +++ b/src/media/cfile.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/cfile.hpp b/src/media/cfile.hpp index 2da772c9f..8dc455881 100644 --- a/src/media/cfile.hpp +++ b/src/media/cfile.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/container.hpp b/src/media/container.hpp index c7a924924..c391f4379 100644 --- a/src/media/container.hpp +++ b/src/media/container.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/encoder.hpp b/src/media/encoder.hpp index 6d83145a8..5aed69302 100644 --- a/src/media/encoder.hpp +++ b/src/media/encoder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/options.cpp b/src/media/options.cpp index 08d253f71..e2f7756a7 100644 --- a/src/media/options.cpp +++ b/src/media/options.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/options.hpp b/src/media/options.hpp index 7570dc694..a97cb4ef1 100644 --- a/src/media/options.hpp +++ b/src/media/options.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/options_values.cpp b/src/media/options_values.cpp index b27330c5a..2f648c264 100644 --- a/src/media/options_values.cpp +++ b/src/media/options_values.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/video_encoder.hpp b/src/media/video_encoder.hpp index e8d404533..dbe79ac1b 100644 --- a/src/media/video_encoder.hpp +++ b/src/media/video_encoder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/video_frame.hpp b/src/media/video_frame.hpp index d2d1bfbec..981a09b47 100644 --- a/src/media/video_frame.hpp +++ b/src/media/video_frame.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vorbis.cpp b/src/media/vorbis.cpp index b535247a7..3c69b5068 100644 --- a/src/media/vorbis.cpp +++ b/src/media/vorbis.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vorbis.hpp b/src/media/vorbis.hpp index 5a7384d79..c83382240 100644 --- a/src/media/vorbis.hpp +++ b/src/media/vorbis.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vorbis_error.hpp b/src/media/vorbis_error.hpp index 4f089ae80..cbd3bffe4 100644 --- a/src/media/vorbis_error.hpp +++ b/src/media/vorbis_error.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vp8.cpp b/src/media/vp8.cpp index b2e2a3ce7..8d57aef83 100644 --- a/src/media/vp8.cpp +++ b/src/media/vp8.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vp8.hpp b/src/media/vp8.hpp index cf878cb3f..a6c8aad7a 100644 --- a/src/media/vp8.hpp +++ b/src/media/vp8.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/vpx_error.hpp b/src/media/vpx_error.hpp index 6ec7f5d9e..ec53945e2 100644 --- a/src/media/vpx_error.hpp +++ b/src/media/vpx_error.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm.hpp b/src/media/webm.hpp index 1a56f94c4..e81ddbf2c 100644 --- a/src/media/webm.hpp +++ b/src/media/webm.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_container.cpp b/src/media/webm_container.cpp index 265d428f1..117a2827f 100644 --- a/src/media/webm_container.cpp +++ b/src/media/webm_container.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_container.hpp b/src/media/webm_container.hpp index 4c4ff9828..3b82b3b9b 100644 --- a/src/media/webm_container.hpp +++ b/src/media/webm_container.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_encoder.hpp b/src/media/webm_encoder.hpp index 8de011811..372b40245 100644 --- a/src/media/webm_encoder.hpp +++ b/src/media/webm_encoder.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_vorbis.hpp b/src/media/webm_vorbis.hpp index 86018c470..1b3577e48 100644 --- a/src/media/webm_vorbis.hpp +++ b/src/media/webm_vorbis.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_vorbis_lace.cpp b/src/media/webm_vorbis_lace.cpp index cc1d26732..45c564419 100644 --- a/src/media/webm_vorbis_lace.cpp +++ b/src/media/webm_vorbis_lace.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_vp8.hpp b/src/media/webm_vp8.hpp index 7dc3da423..700c83a72 100644 --- a/src/media/webm_vp8.hpp +++ b/src/media/webm_vp8.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/webm_writer.hpp b/src/media/webm_writer.hpp index 470bf213a..6ebd998ce 100644 --- a/src/media/webm_writer.hpp +++ b/src/media/webm_writer.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/yuv420p.cpp b/src/media/yuv420p.cpp index 8cf01b212..d251389b8 100644 --- a/src/media/yuv420p.cpp +++ b/src/media/yuv420p.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/media/yuv420p.hpp b/src/media/yuv420p.hpp index 9e7ac942f..cb4648ad5 100644 --- a/src/media/yuv420p.hpp +++ b/src/media/yuv420p.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/class-egg-tv/EggTV.cpp b/src/menus/class-egg-tv/EggTV.cpp index 243c95643..346f2edbf 100644 --- a/src/menus/class-egg-tv/EggTV.cpp +++ b/src/menus/class-egg-tv/EggTV.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/class-egg-tv/EggTV.hpp b/src/menus/class-egg-tv/EggTV.hpp index 49aac3368..5e346ecde 100644 --- a/src/menus/class-egg-tv/EggTV.hpp +++ b/src/menus/class-egg-tv/EggTV.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/class-egg-tv/EggTVData.cpp b/src/menus/class-egg-tv/EggTVData.cpp index eb715736e..a4ea461c2 100644 --- a/src/menus/class-egg-tv/EggTVData.cpp +++ b/src/menus/class-egg-tv/EggTVData.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/class-egg-tv/EggTVData.hpp b/src/menus/class-egg-tv/EggTVData.hpp index fef4f9dfa..4661b95e6 100644 --- a/src/menus/class-egg-tv/EggTVData.hpp +++ b/src/menus/class-egg-tv/EggTVData.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/class-egg-tv/EggTVGraphics.hpp b/src/menus/class-egg-tv/EggTVGraphics.hpp index 362914e7e..280a203a9 100644 --- a/src/menus/class-egg-tv/EggTVGraphics.hpp +++ b/src/menus/class-egg-tv/EggTVGraphics.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/extras-1.c b/src/menus/extras-1.c index 1c3888ca7..b7c8dcd1a 100644 --- a/src/menus/extras-1.c +++ b/src/menus/extras-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/extras-addons.c b/src/menus/extras-addons.c index 22c1c204a..0874b359d 100644 --- a/src/menus/extras-addons.c +++ b/src/menus/extras-addons.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/extras-challenges.c b/src/menus/extras-challenges.c index 8308fae1c..905daeba9 100644 --- a/src/menus/extras-challenges.c +++ b/src/menus/extras-challenges.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/extras-egg-tv.cpp b/src/menus/extras-egg-tv.cpp index ca070cb6a..ae62e06d3 100644 --- a/src/menus/extras-egg-tv.cpp +++ b/src/menus/extras-egg-tv.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/extras-statistics.cpp b/src/menus/extras-statistics.cpp index 75c6821b1..5ae8832f0 100644 --- a/src/menus/extras-statistics.cpp +++ b/src/menus/extras-statistics.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/extras-wrong.c b/src/menus/extras-wrong.c index c1229d339..22af1d3a5 100644 --- a/src/menus/extras-wrong.c +++ b/src/menus/extras-wrong.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/main-1.c b/src/menus/main-1.c index 7fc13d431..f055358dc 100644 --- a/src/menus/main-1.c +++ b/src/menus/main-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/main-goner.cpp b/src/menus/main-goner.cpp index 92c5dc287..52c936bd6 100644 --- a/src/menus/main-goner.cpp +++ b/src/menus/main-goner.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/main-profile-select.c b/src/menus/main-profile-select.c index 7702899fa..919d1421c 100644 --- a/src/menus/main-profile-select.c +++ b/src/menus/main-profile-select.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-1.c b/src/menus/options-1.c index 92317444c..56b09d721 100644 --- a/src/menus/options-1.c +++ b/src/menus/options-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/options-data-1.c b/src/menus/options-data-1.c index 195fbc090..9406a3a04 100644 --- a/src/menus/options-data-1.c +++ b/src/menus/options-data-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-data-advanced-1.c b/src/menus/options-data-advanced-1.c index 366cbf0bf..63ffda0ec 100644 --- a/src/menus/options-data-advanced-1.c +++ b/src/menus/options-data-advanced-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-data-advanced-addon.c b/src/menus/options-data-advanced-addon.c index 77b10e003..9bf517abb 100644 --- a/src/menus/options-data-advanced-addon.c +++ b/src/menus/options-data-advanced-addon.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-data-erase-1.c b/src/menus/options-data-erase-1.c index 909364e20..88387b183 100644 --- a/src/menus/options-data-erase-1.c +++ b/src/menus/options-data-erase-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/options-data-erase-profile.c b/src/menus/options-data-erase-profile.c index efde56525..c9c36681f 100644 --- a/src/menus/options-data-erase-profile.c +++ b/src/menus/options-data-erase-profile.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-data-screenshots.c b/src/menus/options-data-screenshots.c index 0bf15fb7a..cf1533e85 100644 --- a/src/menus/options-data-screenshots.c +++ b/src/menus/options-data-screenshots.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-gameplay-1.c b/src/menus/options-gameplay-1.c index 3ce2c6630..11398a6f4 100644 --- a/src/menus/options-gameplay-1.c +++ b/src/menus/options-gameplay-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-gameplay-item-toggles.c b/src/menus/options-gameplay-item-toggles.c index 720fa4d08..d16eee0a9 100644 --- a/src/menus/options-gameplay-item-toggles.c +++ b/src/menus/options-gameplay-item-toggles.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-hud-1.c b/src/menus/options-hud-1.c index 35eb45895..b0ad986f2 100644 --- a/src/menus/options-hud-1.c +++ b/src/menus/options-hud-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-hud-online.c b/src/menus/options-hud-online.c index 5df03d8a4..3416d6bb0 100644 --- a/src/menus/options-hud-online.c +++ b/src/menus/options-hud-online.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-profiles-1.c b/src/menus/options-profiles-1.c index 047ad6148..0fc2a0de8 100644 --- a/src/menus/options-profiles-1.c +++ b/src/menus/options-profiles-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-profiles-edit-1.c b/src/menus/options-profiles-edit-1.c index 97b2b2c16..f432c24ef 100644 --- a/src/menus/options-profiles-edit-1.c +++ b/src/menus/options-profiles-edit-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-profiles-edit-accessibility.cpp b/src/menus/options-profiles-edit-accessibility.cpp index 14dd0643d..bbb09f97a 100644 --- a/src/menus/options-profiles-edit-accessibility.cpp +++ b/src/menus/options-profiles-edit-accessibility.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-profiles-edit-controls.c b/src/menus/options-profiles-edit-controls.c index 7c50aba8e..628035f3a 100644 --- a/src/menus/options-profiles-edit-controls.c +++ b/src/menus/options-profiles-edit-controls.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-server-1.c b/src/menus/options-server-1.c index ca7634210..877d0e223 100644 --- a/src/menus/options-server-1.c +++ b/src/menus/options-server-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-server-advanced.c b/src/menus/options-server-advanced.c index cbe0fd4ec..a2b15921c 100644 --- a/src/menus/options-server-advanced.c +++ b/src/menus/options-server-advanced.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-sound.cpp b/src/menus/options-sound.cpp index 8a5d6d9a3..e77d7a6c0 100644 --- a/src/menus/options-sound.cpp +++ b/src/menus/options-sound.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-video-1.c b/src/menus/options-video-1.c index e4965ca29..0896f78fe 100644 --- a/src/menus/options-video-1.c +++ b/src/menus/options-video-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-video-advanced.c b/src/menus/options-video-advanced.c index 5e29ed467..c2e40ae04 100644 --- a/src/menus/options-video-advanced.c +++ b/src/menus/options-video-advanced.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/options-video-modes.c b/src/menus/options-video-modes.c index 68506e018..33bfe5afc 100644 --- a/src/menus/options-video-modes.c +++ b/src/menus/options-video-modes.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/play-1.c b/src/menus/play-1.c index 10b70a484..8bc18bda5 100644 --- a/src/menus/play-1.c +++ b/src/menus/play-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-char-select.c b/src/menus/play-char-select.c index 1358a2db9..010f13f7a 100644 --- a/src/menus/play-char-select.c +++ b/src/menus/play-char-select.c @@ -1,9 +1,9 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // This program is free software distributed under the // terms of the GNU General Public License, version 2. @@ -288,7 +288,7 @@ static void M_SetupMidGameGridPos(setup_player_t *p, UINT8 num) void M_CharacterSelectInit(void) { - UINT8 i, j; + UINT16 i, j; setup_maxpage = 0; memset(setup_chargrid, -1, sizeof(setup_chargrid)); diff --git a/src/menus/play-local-1.c b/src/menus/play-local-1.c index b3844f785..433ed5ada 100644 --- a/src/menus/play-local-1.c +++ b/src/menus/play-local-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-local-race-1.c b/src/menus/play-local-race-1.c index 1de2de42e..d7013cafd 100644 --- a/src/menus/play-local-race-1.c +++ b/src/menus/play-local-race-1.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-local-race-difficulty.c b/src/menus/play-local-race-difficulty.c index 1f5636228..5793e76c4 100644 --- a/src/menus/play-local-race-difficulty.c +++ b/src/menus/play-local-race-difficulty.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-local-race-time-attack.c b/src/menus/play-local-race-time-attack.c index 880b764af..b682cfe07 100644 --- a/src/menus/play-local-race-time-attack.c +++ b/src/menus/play-local-race-time-attack.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/menus/play-online-1.c b/src/menus/play-online-1.c index 74f23b900..a9f99e1c0 100644 --- a/src/menus/play-online-1.c +++ b/src/menus/play-online-1.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-online-host.c b/src/menus/play-online-host.c index 56b7c8ab2..a52f04822 100644 --- a/src/menus/play-online-host.c +++ b/src/menus/play-online-host.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-online-join-ip.c b/src/menus/play-online-join-ip.c index aa7365b4f..294a613a1 100644 --- a/src/menus/play-online-join-ip.c +++ b/src/menus/play-online-join-ip.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-online-room-select.c b/src/menus/play-online-room-select.c index 56bdc1eaf..fa346c5e7 100644 --- a/src/menus/play-online-room-select.c +++ b/src/menus/play-online-room-select.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/play-online-server-browser.c b/src/menus/play-online-server-browser.c index 68880fa09..b28c0f66d 100644 --- a/src/menus/play-online-server-browser.c +++ b/src/menus/play-online-server-browser.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2016 by Kay "Kaito" Sinclaire. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/menus/transient/cup-select.c b/src/menus/transient/cup-select.c index 23a7e5943..8fa830094 100644 --- a/src/menus/transient/cup-select.c +++ b/src/menus/transient/cup-select.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/discord-requests.c b/src/menus/transient/discord-requests.c index 5756dac91..200f0f8d3 100644 --- a/src/menus/transient/discord-requests.c +++ b/src/menus/transient/discord-requests.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/explosions.c b/src/menus/transient/explosions.c index a75b105e5..dda138e25 100644 --- a/src/menus/transient/explosions.c +++ b/src/menus/transient/explosions.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/gametype.c b/src/menus/transient/gametype.c index cad40fa3a..b52242b8b 100644 --- a/src/menus/transient/gametype.c +++ b/src/menus/transient/gametype.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/level-select.c b/src/menus/transient/level-select.c index 486104117..7dfb04be6 100644 --- a/src/menus/transient/level-select.c +++ b/src/menus/transient/level-select.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/manual.c b/src/menus/transient/manual.c index 2e974069e..c237725f1 100644 --- a/src/menus/transient/manual.c +++ b/src/menus/transient/manual.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/message-box.c b/src/menus/transient/message-box.c index 8f3bd8e23..6d2e12e19 100644 --- a/src/menus/transient/message-box.c +++ b/src/menus/transient/message-box.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/pause-addonoptions.cpp b/src/menus/transient/pause-addonoptions.cpp index a7db2ccfe..2f3f69526 100644 --- a/src/menus/transient/pause-addonoptions.cpp +++ b/src/menus/transient/pause-addonoptions.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by AJ "Tyron" Martinez -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by AJ "Tyron" Martinez +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/pause-cheats.cpp b/src/menus/transient/pause-cheats.cpp index b6e5160e1..6f0e38886 100644 --- a/src/menus/transient/pause-cheats.cpp +++ b/src/menus/transient/pause-cheats.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/pause-game.c b/src/menus/transient/pause-game.c index 5404bcc24..00884cb4f 100644 --- a/src/menus/transient/pause-game.c +++ b/src/menus/transient/pause-game.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'". -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by "Lat'". +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/pause-kick.c b/src/menus/transient/pause-kick.c index e61e5db24..3870ebaa3 100644 --- a/src/menus/transient/pause-kick.c +++ b/src/menus/transient/pause-kick.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/pause-replay.c b/src/menus/transient/pause-replay.c index 41de599cc..864344d91 100644 --- a/src/menus/transient/pause-replay.c +++ b/src/menus/transient/pause-replay.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/sound-test.c b/src/menus/transient/sound-test.c index ea1703106..4945e7082 100644 --- a/src/menus/transient/sound-test.c +++ b/src/menus/transient/sound-test.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/menus/transient/virtual-keyboard.c b/src/menus/transient/virtual-keyboard.c index 5e22f23a3..38a507f2b 100644 --- a/src/menus/transient/virtual-keyboard.c +++ b/src/menus/transient/virtual-keyboard.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/mobj.hpp b/src/mobj.hpp index 2c2e4e97f..5acdfed10 100644 --- a/src/mobj.hpp +++ b/src/mobj.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/mobj_list.hpp b/src/mobj_list.hpp index bf46e7e38..4a3150207 100644 --- a/src/mobj_list.hpp +++ b/src/mobj_list.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/mobj_list_view.hpp b/src/mobj_list_view.hpp index 7568548ab..883b859ab 100644 --- a/src/mobj_list_view.hpp +++ b/src/mobj_list_view.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/mserv.c b/src/mserv.c index 0b1c1cefa..16f3a4e3d 100644 --- a/src/mserv.c +++ b/src/mserv.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/mserv.h b/src/mserv.h index fd780d8b6..3f71b11c1 100644 --- a/src/mserv.h +++ b/src/mserv.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // Copyright (C) 2020 by Sonic Team Junior // Copyright (C) 2000 by DooM Legacy Team // diff --git a/src/music.cpp b/src/music.cpp index e9aab9b60..44f1edb3c 100644 --- a/src/music.cpp +++ b/src/music.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/music.h b/src/music.h index 4b005e282..630c7a98c 100644 --- a/src/music.h +++ b/src/music.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/music_detail.hpp b/src/music_detail.hpp index f903038e2..89add76c7 100644 --- a/src/music_detail.hpp +++ b/src/music_detail.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/music_manager.cpp b/src/music_manager.cpp index d65b7f9a9..b93745a88 100644 --- a/src/music_manager.cpp +++ b/src/music_manager.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/music_manager.hpp b/src/music_manager.hpp index 682ebd27a..adddd3c48 100644 --- a/src/music_manager.hpp +++ b/src/music_manager.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/music_tune.hpp b/src/music_tune.hpp index fbf3d7207..2f9c925f7 100644 --- a/src/music_tune.hpp +++ b/src/music_tune.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/nds/i_video.c b/src/nds/i_video.c index 10ea55aef..7af7a2850 100644 --- a/src/nds/i_video.c +++ b/src/nds/i_video.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/nds/r_nds3d.c b/src/nds/r_nds3d.c index 006fa8dea..7994f2035 100644 --- a/src/nds/r_nds3d.c +++ b/src/nds/r_nds3d.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/objects/adventure-air-booster.c b/src/objects/adventure-air-booster.c index 843d6c0ac..d971b0d82 100644 --- a/src/objects/adventure-air-booster.c +++ b/src/objects/adventure-air-booster.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Lachlan "Lach" Wright -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Lachlan "Lach" Wright +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/ark-arrow.c b/src/objects/ark-arrow.c index a1657eadb..abb450038 100644 --- a/src/objects/ark-arrow.c +++ b/src/objects/ark-arrow.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Lachlan "Lach" Wright -// Copyright (C) 2024 by AJ "Tyron" Martinez -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Lachlan "Lach" Wright +// Copyright (C) 2025 by AJ "Tyron" Martinez +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/audience.c b/src/objects/audience.c index 61ec927af..534ab1b32 100644 --- a/src/objects/audience.c +++ b/src/objects/audience.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/ball-switch.cpp b/src/objects/ball-switch.cpp index 72cbae821..778c94dff 100644 --- a/src/objects/ball-switch.cpp +++ b/src/objects/ball-switch.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/battle-ufo.cpp b/src/objects/battle-ufo.cpp index 07b43e15e..21045eef1 100644 --- a/src/objects/battle-ufo.cpp +++ b/src/objects/battle-ufo.cpp @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by SteelT. -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by SteelT. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/block.c b/src/objects/block.c index 9332274f9..7022f4cdb 100644 --- a/src/objects/block.c +++ b/src/objects/block.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/broly.cpp b/src/objects/broly.cpp index 74756c8a1..7768a7d11 100644 --- a/src/objects/broly.cpp +++ b/src/objects/broly.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/broly.hpp b/src/objects/broly.hpp index 9590c1781..985316679 100644 --- a/src/objects/broly.hpp +++ b/src/objects/broly.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/bungee.c b/src/objects/bungee.c index ccf6538b4..521f8d312 100644 --- a/src/objects/bungee.c +++ b/src/objects/bungee.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/charge.c b/src/objects/charge.c index 973b65678..597395ca0 100644 --- a/src/objects/charge.c +++ b/src/objects/charge.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/checkpoint.cpp b/src/objects/checkpoint.cpp index 867ace7a6..694d0564c 100644 --- a/src/objects/checkpoint.cpp +++ b/src/objects/checkpoint.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/cloud.c b/src/objects/cloud.c index ad1602cb2..045d360fc 100644 --- a/src/objects/cloud.c +++ b/src/objects/cloud.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/crate.cpp b/src/objects/crate.cpp index 831a85488..bfea4d900 100644 --- a/src/objects/crate.cpp +++ b/src/objects/crate.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/dash-rings.c b/src/objects/dash-rings.c index f7a8637be..6803629d1 100644 --- a/src/objects/dash-rings.c +++ b/src/objects/dash-rings.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Lachlan "Lach" Wright -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Lachlan "Lach" Wright +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/destroyed-kart.cpp b/src/objects/destroyed-kart.cpp index 95782cf74..c6a5a0946 100644 --- a/src/objects/destroyed-kart.cpp +++ b/src/objects/destroyed-kart.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/dlzothers.c b/src/objects/dlzothers.c index 1ba642cda..c7b9b043b 100644 --- a/src/objects/dlzothers.c +++ b/src/objects/dlzothers.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/dlzrocket.c b/src/objects/dlzrocket.c index 36547c369..4d299fbd6 100644 --- a/src/objects/dlzrocket.c +++ b/src/objects/dlzrocket.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/dlzseasaw.c b/src/objects/dlzseasaw.c index 4ebd37050..203c242a0 100644 --- a/src/objects/dlzseasaw.c +++ b/src/objects/dlzseasaw.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/drop-target.c b/src/objects/drop-target.c index 795945949..a1470b338 100644 --- a/src/objects/drop-target.c +++ b/src/objects/drop-target.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/duel-bomb.c b/src/objects/duel-bomb.c index de57a1d07..64c63f96f 100644 --- a/src/objects/duel-bomb.c +++ b/src/objects/duel-bomb.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/eggball.c b/src/objects/eggball.c index d3de0d375..e5b01d62c 100644 --- a/src/objects/eggball.c +++ b/src/objects/eggball.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/emerald.c b/src/objects/emerald.c index 44fdff118..2006a1406 100644 --- a/src/objects/emerald.c +++ b/src/objects/emerald.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/emz-faucet.cpp b/src/objects/emz-faucet.cpp index e8f7a068a..745a4b6eb 100644 --- a/src/objects/emz-faucet.cpp +++ b/src/objects/emz-faucet.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/frost-thrower.cpp b/src/objects/frost-thrower.cpp index 5c03d520f..c1566b2ce 100644 --- a/src/objects/frost-thrower.cpp +++ b/src/objects/frost-thrower.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/fuel.cpp b/src/objects/fuel.cpp index d49994ad5..cf45f1f1a 100644 --- a/src/objects/fuel.cpp +++ b/src/objects/fuel.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/gachabom-rebound.cpp b/src/objects/gachabom-rebound.cpp index f278aa58e..60c0d61f7 100644 --- a/src/objects/gachabom-rebound.cpp +++ b/src/objects/gachabom-rebound.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/gardentop.c b/src/objects/gardentop.c index cb7fea0ea..01f738218 100644 --- a/src/objects/gardentop.c +++ b/src/objects/gardentop.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/gpzseasaw.c b/src/objects/gpzseasaw.c index b36a821a1..dafc57610 100644 --- a/src/objects/gpzseasaw.c +++ b/src/objects/gpzseasaw.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/hyudoro.c b/src/objects/hyudoro.c index 588ab5e04..2527ea903 100644 --- a/src/objects/hyudoro.c +++ b/src/objects/hyudoro.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/instawhip.c b/src/objects/instawhip.c index bc7657f11..4f07d3891 100644 --- a/src/objects/instawhip.c +++ b/src/objects/instawhip.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by AJ "Tyron" Martinez. -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by AJ "Tyron" Martinez. +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/item-debris.c b/src/objects/item-debris.c index e60ffc153..201c9eee7 100644 --- a/src/objects/item-debris.c +++ b/src/objects/item-debris.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/item-spot.c b/src/objects/item-spot.c index 759776d5f..c1441a44f 100644 --- a/src/objects/item-spot.c +++ b/src/objects/item-spot.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/ivoball.cpp b/src/objects/ivoball.cpp index 653a48987..2dd5a0581 100644 --- a/src/objects/ivoball.cpp +++ b/src/objects/ivoball.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/jawz.c b/src/objects/jawz.c index ee91462fa..d13cb0514 100644 --- a/src/objects/jawz.c +++ b/src/objects/jawz.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/loops.cpp b/src/objects/loops.cpp index f2e26a1ac..ddb401891 100644 --- a/src/objects/loops.cpp +++ b/src/objects/loops.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/manta-ring.c b/src/objects/manta-ring.c index d45bf9cb9..ccc6763c6 100644 --- a/src/objects/manta-ring.c +++ b/src/objects/manta-ring.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/mega-barrier.cpp b/src/objects/mega-barrier.cpp index 95f084e02..49c33daff 100644 --- a/src/objects/mega-barrier.cpp +++ b/src/objects/mega-barrier.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/monitor.c b/src/objects/monitor.c index 384410f13..f39c8d677 100644 --- a/src/objects/monitor.c +++ b/src/objects/monitor.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/objects.hpp b/src/objects/objects.hpp index 18b97184b..24af55e22 100644 --- a/src/objects/objects.hpp +++ b/src/objects/objects.hpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/orbinaut.c b/src/objects/orbinaut.c index 7c47cb30b..aa162bc9b 100644 --- a/src/objects/orbinaut.c +++ b/src/objects/orbinaut.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/powerup-aura.cpp b/src/objects/powerup-aura.cpp index ef716d62d..7666b4932 100644 --- a/src/objects/powerup-aura.cpp +++ b/src/objects/powerup-aura.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/powerup-spinner.cpp b/src/objects/powerup-spinner.cpp index 100c1bf27..da8d504e5 100644 --- a/src/objects/powerup-spinner.cpp +++ b/src/objects/powerup-spinner.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/pulley.cpp b/src/objects/pulley.cpp index 16fcb4b72..7e22f85f3 100644 --- a/src/objects/pulley.cpp +++ b/src/objects/pulley.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/random-item.c b/src/objects/random-item.c index b6e79aad5..0e0a2a788 100644 --- a/src/objects/random-item.c +++ b/src/objects/random-item.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/rideroid.c b/src/objects/rideroid.c index fa40cc06e..3aead5faa 100644 --- a/src/objects/rideroid.c +++ b/src/objects/rideroid.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/ring-shooter.c b/src/objects/ring-shooter.c index e43611552..f3180fbd3 100644 --- a/src/objects/ring-shooter.c +++ b/src/objects/ring-shooter.c @@ -1,8 +1,8 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Lachlan "Lach" Wright -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Lachlan "Lach" Wright +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/rocks.cpp b/src/objects/rocks.cpp index 7b88b5c74..8bf400838 100644 --- a/src/objects/rocks.cpp +++ b/src/objects/rocks.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/sealed-star.c b/src/objects/sealed-star.c index 994ba838d..ccf136800 100644 --- a/src/objects/sealed-star.c +++ b/src/objects/sealed-star.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/servant-hand.c b/src/objects/servant-hand.c index c140a0139..bb82e26d7 100644 --- a/src/objects/servant-hand.c +++ b/src/objects/servant-hand.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/shadow.cpp b/src/objects/shadow.cpp index 6cfc7a042..5327fa179 100644 --- a/src/objects/shadow.cpp +++ b/src/objects/shadow.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/shrink.c b/src/objects/shrink.c index d289dcf6c..269c46f40 100644 --- a/src/objects/shrink.c +++ b/src/objects/shrink.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/sneaker-panel.c b/src/objects/sneaker-panel.c index fba8f5025..7824bbedf 100644 --- a/src/objects/sneaker-panel.c +++ b/src/objects/sneaker-panel.c @@ -1,9 +1,9 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Lachlan "Lach" Wright -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Lachlan "Lach" Wright +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/spb.c b/src/objects/spb.c index e0375408a..24d98ed1d 100644 --- a/src/objects/spb.c +++ b/src/objects/spb.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/spear.cpp b/src/objects/spear.cpp index 6d187738f..c57e554b0 100644 --- a/src/objects/spear.cpp +++ b/src/objects/spear.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/super-flicky.cpp b/src/objects/super-flicky.cpp index 594fc760b..28f956308 100644 --- a/src/objects/super-flicky.cpp +++ b/src/objects/super-flicky.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/talk-point.cpp b/src/objects/talk-point.cpp index 99befbd02..4d09ae6d7 100644 --- a/src/objects/talk-point.cpp +++ b/src/objects/talk-point.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/trick-balloon.c b/src/objects/trick-balloon.c index b322cf2c6..bd36ecf34 100644 --- a/src/objects/trick-balloon.c +++ b/src/objects/trick-balloon.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/ufo.c b/src/objects/ufo.c index 6ef391b18..f753874c3 100644 --- a/src/objects/ufo.c +++ b/src/objects/ufo.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/versus/arena.c b/src/objects/versus/arena.c index d02f606b4..e75a9fc30 100644 --- a/src/objects/versus/arena.c +++ b/src/objects/versus/arena.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/versus/blendeye.c b/src/objects/versus/blendeye.c index 2ae76977b..435f7f278 100644 --- a/src/objects/versus/blendeye.c +++ b/src/objects/versus/blendeye.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/waterfall-particle.c b/src/objects/waterfall-particle.c index 7928c2c9a..d52607bde 100644 --- a/src/objects/waterfall-particle.c +++ b/src/objects/waterfall-particle.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/wpzothers.c b/src/objects/wpzothers.c index f6ab5870f..e1f667202 100644 --- a/src/objects/wpzothers.c +++ b/src/objects/wpzothers.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/objects/wpzturbine.c b/src/objects/wpzturbine.c index 440343341..5d86146e5 100644 --- a/src/objects/wpzturbine.c +++ b/src/objects/wpzturbine.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by "Lat'" -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by "Lat'" +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_ceilng.c b/src/p_ceilng.c index 5eaea121c..e3bbe6acc 100644 --- a/src/p_ceilng.c +++ b/src/p_ceilng.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_enemy.c b/src/p_enemy.c index 13a7e5cda..6791963c1 100644 --- a/src/p_enemy.c +++ b/src/p_enemy.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_floor.c b/src/p_floor.c index 6f425d7d1..a96a035a6 100644 --- a/src/p_floor.c +++ b/src/p_floor.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_inter.c b/src/p_inter.c index 7cd45a40b..28bf905a8 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_lights.c b/src/p_lights.c index d5f58ebbc..fe167838a 100644 --- a/src/p_lights.c +++ b/src/p_lights.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_link.cpp b/src/p_link.cpp index 6ad7f22fb..bbb2773de 100644 --- a/src/p_link.cpp +++ b/src/p_link.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_link.h b/src/p_link.h index 70671f555..09dff6875 100644 --- a/src/p_link.h +++ b/src/p_link.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_local.h b/src/p_local.h index 11385d656..ee269807f 100644 --- a/src/p_local.h +++ b/src/p_local.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_loop.c b/src/p_loop.c index 3db389e7c..9ddf22f7b 100644 --- a/src/p_loop.c +++ b/src/p_loop.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_map.c b/src/p_map.c index 27080529a..c4e831118 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_mapthing.cpp b/src/p_mapthing.cpp index 5c7dc277f..13b9f04f6 100644 --- a/src/p_mapthing.cpp +++ b/src/p_mapthing.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_maputl.c b/src/p_maputl.c index c5d588777..1388f4b6c 100644 --- a/src/p_maputl.c +++ b/src/p_maputl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_maputl.h b/src/p_maputl.h index f4d998184..caab92f60 100644 --- a/src/p_maputl.h +++ b/src/p_maputl.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/p_mobj.c b/src/p_mobj.c index ca1fa6454..cda72ebf3 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. @@ -8937,7 +8937,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj) if (plistlen > 1) { // Pick another player in the server! - plistlen = P_RandomKey(PR_SPARKLE, plistlen+1); + plistlen = P_RandomKey(PR_SPARKLE, plistlen); } else { diff --git a/src/p_mobj.h b/src/p_mobj.h index d1ec47c9e..08b41922e 100644 --- a/src/p_mobj.h +++ b/src/p_mobj.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_polyobj.c b/src/p_polyobj.c index 891ed603e..b6e15204d 100644 --- a/src/p_polyobj.c +++ b/src/p_polyobj.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2006 by James Haley. // diff --git a/src/p_polyobj.h b/src/p_polyobj.h index 576c859d0..0c9954602 100644 --- a/src/p_polyobj.h +++ b/src/p_polyobj.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2006 by James Haley. // diff --git a/src/p_pspr.h b/src/p_pspr.h index 15145b3ca..31ebefd32 100644 --- a/src/p_pspr.h +++ b/src/p_pspr.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_saveg.cpp b/src/p_saveg.cpp index 11a7bf06b..51a1a94b9 100644 --- a/src/p_saveg.cpp +++ b/src/p_saveg.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_saveg.h b/src/p_saveg.h index eedfa46de..f0beb35e3 100644 --- a/src/p_saveg.h +++ b/src/p_saveg.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_setup.cpp b/src/p_setup.cpp index 112171865..737b8b686 100644 --- a/src/p_setup.cpp +++ b/src/p_setup.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_setup.h b/src/p_setup.h index e0ffdb23b..b16db6bb5 100644 --- a/src/p_setup.h +++ b/src/p_setup.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_sight.c b/src/p_sight.c index f934e1a6d..a7ea2a685 100644 --- a/src/p_sight.c +++ b/src/p_sight.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Sally "TehRealSalt" Cochenour. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_slopes.c b/src/p_slopes.c index 3b42c5e73..66565d87a 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2004 by Stephen McGranahan. // diff --git a/src/p_slopes.h b/src/p_slopes.h index 690e06f54..b9708bff1 100644 --- a/src/p_slopes.h +++ b/src/p_slopes.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2004 by Stephen McGranahan. // diff --git a/src/p_spec.c b/src/p_spec.c index 0c6264da1..67b8bac6e 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_spec.h b/src/p_spec.h index e7020d6f0..e637e4fe0 100644 --- a/src/p_spec.h +++ b/src/p_spec.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_sweep.cpp b/src/p_sweep.cpp index 971e2bdb5..c475a9f16 100644 --- a/src/p_sweep.cpp +++ b/src/p_sweep.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_sweep.hpp b/src/p_sweep.hpp index 6172dbe3c..65790091b 100644 --- a/src/p_sweep.hpp +++ b/src/p_sweep.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_telept.c b/src/p_telept.c index 09db59477..55ce5f993 100644 --- a/src/p_telept.c +++ b/src/p_telept.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_test.cpp b/src/p_test.cpp index 8485e7ba9..5b9b07e42 100644 --- a/src/p_test.cpp +++ b/src/p_test.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/p_tick.c b/src/p_tick.c index 2b635a0bd..29cf6d62c 100644 --- a/src/p_tick.c +++ b/src/p_tick.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_tick.h b/src/p_tick.h index b2af7a378..b735d9b1d 100644 --- a/src/p_tick.h +++ b/src/p_tick.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/p_user.c b/src/p_user.c index 478503157..d17673742 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_bbox.c b/src/r_bbox.c index fe49495a1..eb3a0b4fd 100644 --- a/src/r_bbox.c +++ b/src/r_bbox.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_bsp.cpp b/src/r_bsp.cpp index a50410ab9..73474d1f8 100644 --- a/src/r_bsp.cpp +++ b/src/r_bsp.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_bsp.h b/src/r_bsp.h index 658f8acdc..6c2848ef0 100644 --- a/src/r_bsp.h +++ b/src/r_bsp.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_data.c b/src/r_data.c index e4993ffad..2e864bebf 100644 --- a/src/r_data.c +++ b/src/r_data.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_data.h b/src/r_data.h index fdbca564a..9368f6f9c 100644 --- a/src/r_data.h +++ b/src/r_data.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_debug.cpp b/src/r_debug.cpp index f03ec22d1..660f2dc02 100644 --- a/src/r_debug.cpp +++ b/src/r_debug.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_debug.hpp b/src/r_debug.hpp index a62ded790..3613dbb76 100644 --- a/src/r_debug.hpp +++ b/src/r_debug.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_debug_detail.hpp b/src/r_debug_detail.hpp index e2419e240..b952b65ab 100644 --- a/src/r_debug_detail.hpp +++ b/src/r_debug_detail.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_debug_parser.cpp b/src/r_debug_parser.cpp index 538c5f157..5f7154cb5 100644 --- a/src/r_debug_parser.cpp +++ b/src/r_debug_parser.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_debug_printer.cpp b/src/r_debug_printer.cpp index 300b54139..a6b2e7749 100644 --- a/src/r_debug_printer.cpp +++ b/src/r_debug_printer.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_defs.h b/src/r_defs.h index 5fd517a91..5e484a86b 100644 --- a/src/r_defs.h +++ b/src/r_defs.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_draw.cpp b/src/r_draw.cpp index 698bf7fad..ae94e7578 100644 --- a/src/r_draw.cpp +++ b/src/r_draw.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_draw.h b/src/r_draw.h index e7c75b352..b3b71e176 100644 --- a/src/r_draw.h +++ b/src/r_draw.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_draw_column.cpp b/src/r_draw_column.cpp index 31f1501a8..c867aa6ff 100644 --- a/src/r_draw_column.cpp +++ b/src/r_draw_column.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_draw_span.cpp b/src/r_draw_span.cpp index 9d0d0fcae..33c4c5273 100644 --- a/src/r_draw_span.cpp +++ b/src/r_draw_span.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_fps.cpp b/src/r_fps.cpp index 8d7b95d18..08750043b 100644 --- a/src/r_fps.cpp +++ b/src/r_fps.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by Jess Haas, Nicolas Kalkhof, Colin Phipps, Florian Schulze, Andrey Budko (prboom) // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/r_fps.h b/src/r_fps.h index fff0a35f2..ddd474c07 100644 --- a/src/r_fps.h +++ b/src/r_fps.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by Jess Haas, Nicolas Kalkhof, Colin Phipps, Florian Schulze, Andrey Budko (prboom) // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/r_local.h b/src/r_local.h index a88ff4340..7bedf0484 100644 --- a/src/r_local.h +++ b/src/r_local.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_main.cpp b/src/r_main.cpp index d129a235b..23fa4749f 100644 --- a/src/r_main.cpp +++ b/src/r_main.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_main.h b/src/r_main.h index ccb534213..79005f7cc 100644 --- a/src/r_main.h +++ b/src/r_main.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_patch.cpp b/src/r_patch.cpp index c1cbe37db..83333275e 100644 --- a/src/r_patch.cpp +++ b/src/r_patch.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/r_patch.h b/src/r_patch.h index 53de078c8..2c5fd6596 100644 --- a/src/r_patch.h +++ b/src/r_patch.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/r_patchrotation.c b/src/r_patchrotation.c index 98a8db190..215246347 100644 --- a/src/r_patchrotation.c +++ b/src/r_patchrotation.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/r_patchrotation.h b/src/r_patchrotation.h index 56887b25e..030c7a27e 100644 --- a/src/r_patchrotation.h +++ b/src/r_patchrotation.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // diff --git a/src/r_picformats.c b/src/r_picformats.c index 84503d365..d168dda19 100644 --- a/src/r_picformats.c +++ b/src/r_picformats.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2009 by Andrey "entryway" Budko. diff --git a/src/r_picformats.h b/src/r_picformats.h index dc1a67ef6..85c82d3d0 100644 --- a/src/r_picformats.h +++ b/src/r_picformats.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Jaime "Lactozilla" Passos. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/r_plane.cpp b/src/r_plane.cpp index 56a2fcfaa..ab6659809 100644 --- a/src/r_plane.cpp +++ b/src/r_plane.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_plane.h b/src/r_plane.h index 301d3e6f8..22f0a609e 100644 --- a/src/r_plane.h +++ b/src/r_plane.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_portal.c b/src/r_portal.c index 2944d8475..3e893054d 100644 --- a/src/r_portal.c +++ b/src/r_portal.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_portal.h b/src/r_portal.h index d51e39383..b8107f2c7 100644 --- a/src/r_portal.h +++ b/src/r_portal.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_segs.cpp b/src/r_segs.cpp index 65a68c7b3..0867960f5 100644 --- a/src/r_segs.cpp +++ b/src/r_segs.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_segs.h b/src/r_segs.h index 070ebbd0c..887274243 100644 --- a/src/r_segs.h +++ b/src/r_segs.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_skins.c b/src/r_skins.c index 2cb8793a8..7370d3fde 100644 --- a/src/r_skins.c +++ b/src/r_skins.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_skins.h b/src/r_skins.h index 6e1d2a455..9a05129f9 100644 --- a/src/r_skins.h +++ b/src/r_skins.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_sky.c b/src/r_sky.c index b098faa37..d66d0e3e5 100644 --- a/src/r_sky.c +++ b/src/r_sky.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_sky.h b/src/r_sky.h index 0114975da..ae33a9c02 100644 --- a/src/r_sky.h +++ b/src/r_sky.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_splats.c b/src/r_splats.c index d89057764..fa8e2b64c 100644 --- a/src/r_splats.c +++ b/src/r_splats.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2021 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/r_splats.h b/src/r_splats.h index 324fd1d11..4f0a336d1 100644 --- a/src/r_splats.h +++ b/src/r_splats.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/r_spritefx.cpp b/src/r_spritefx.cpp index b5a2453dd..03b2db6d6 100644 --- a/src/r_spritefx.cpp +++ b/src/r_spritefx.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_state.h b/src/r_state.h index 6cfcc1a09..111c3f95a 100644 --- a/src/r_state.h +++ b/src/r_state.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_textures.cpp b/src/r_textures.cpp index b80308b00..f582f50d4 100644 --- a/src/r_textures.cpp +++ b/src/r_textures.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2021 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_textures.h b/src/r_textures.h index 88ef22a8a..4f0447989 100644 --- a/src/r_textures.h +++ b/src/r_textures.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_textures_dups.cpp b/src/r_textures_dups.cpp index 0ecf71dd8..90bb48dc5 100644 --- a/src/r_textures_dups.cpp +++ b/src/r_textures_dups.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/r_things.cpp b/src/r_things.cpp index 918db5f02..e3b6d4291 100644 --- a/src/r_things.cpp +++ b/src/r_things.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/r_things.h b/src/r_things.h index e2bdbfb33..b8e67b7e6 100644 --- a/src/r_things.h +++ b/src/r_things.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/rhi/gl2/gl2_rhi.cpp b/src/rhi/gl2/gl2_rhi.cpp index 0c3e49516..0097dea20 100644 --- a/src/rhi/gl2/gl2_rhi.cpp +++ b/src/rhi/gl2/gl2_rhi.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/gl2/gl2_rhi.hpp b/src/rhi/gl2/gl2_rhi.hpp index 0863ed311..c12af9445 100644 --- a/src/rhi/gl2/gl2_rhi.hpp +++ b/src/rhi/gl2/gl2_rhi.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/gles2/gles2_rhi.cpp b/src/rhi/gles2/gles2_rhi.cpp index 0faf3b5d6..d7113f2cd 100644 --- a/src/rhi/gles2/gles2_rhi.cpp +++ b/src/rhi/gles2/gles2_rhi.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/gles2/gles2_rhi.hpp b/src/rhi/gles2/gles2_rhi.hpp index 7c3829e1e..5c55bd56c 100644 --- a/src/rhi/gles2/gles2_rhi.hpp +++ b/src/rhi/gles2/gles2_rhi.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/handle.hpp b/src/rhi/handle.hpp index 434172776..deed29498 100644 --- a/src/rhi/handle.hpp +++ b/src/rhi/handle.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/rhi.cpp b/src/rhi/rhi.cpp index a2da54b1f..905a64f28 100644 --- a/src/rhi/rhi.cpp +++ b/src/rhi/rhi.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/rhi.hpp b/src/rhi/rhi.hpp index 4f141574b..e689967ec 100644 --- a/src/rhi/rhi.hpp +++ b/src/rhi/rhi.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/shader_load_context.cpp b/src/rhi/shader_load_context.cpp index c07a5b0b8..790fd5df1 100644 --- a/src/rhi/shader_load_context.cpp +++ b/src/rhi/shader_load_context.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/rhi/shader_load_context.hpp b/src/rhi/shader_load_context.hpp index 83b266a99..d11e38f6a 100644 --- a/src/rhi/shader_load_context.hpp +++ b/src/rhi/shader_load_context.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/s_sound.c b/src/s_sound.c index b27c5b5e4..5b68ea049 100644 --- a/src/s_sound.c +++ b/src/s_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/s_sound.h b/src/s_sound.h index 73f62577b..f2d9f882a 100644 --- a/src/s_sound.h +++ b/src/s_sound.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sanitize.cpp b/src/sanitize.cpp index 4c7809187..6862e0ec8 100644 --- a/src/sanitize.cpp +++ b/src/sanitize.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sanitize.h b/src/sanitize.h index 801c4c258..3bb07c1b3 100644 --- a/src/sanitize.h +++ b/src/sanitize.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/screen.c b/src/screen.c index 2f0184cad..67b8f13fb 100644 --- a/src/screen.c +++ b/src/screen.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/screen.h b/src/screen.h index 39828a03a..cb4137fb0 100644 --- a/src/screen.h +++ b/src/screen.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl/endtxt.h b/src/sdl/endtxt.h index 715d78841..e11d7fc4d 100644 --- a/src/sdl/endtxt.h +++ b/src/sdl/endtxt.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl/hwsym_sdl.c b/src/sdl/hwsym_sdl.c index d68b62411..a801c73e9 100644 --- a/src/sdl/hwsym_sdl.c +++ b/src/sdl/hwsym_sdl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl/hwsym_sdl.h b/src/sdl/hwsym_sdl.h index 41684895b..9e8461253 100644 --- a/src/sdl/hwsym_sdl.h +++ b/src/sdl/hwsym_sdl.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl/i_main.cpp b/src/sdl/i_main.cpp index ebddecac9..fd6ff45c2 100644 --- a/src/sdl/i_main.cpp +++ b/src/sdl/i_main.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/i_net.c b/src/sdl/i_net.c index 4fcfde5e3..ed8990559 100644 --- a/src/sdl/i_net.c +++ b/src/sdl/i_net.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/i_system.cpp b/src/sdl/i_system.cpp index d884ef40b..2b5945ad0 100644 --- a/src/sdl/i_system.cpp +++ b/src/sdl/i_system.cpp @@ -3,7 +3,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/i_threads.c b/src/sdl/i_threads.c index 0e0558621..9cd5824f5 100644 --- a/src/sdl/i_threads.c +++ b/src/sdl/i_threads.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/i_ttf.c b/src/sdl/i_ttf.c index 43298ab93..fe8547289 100644 --- a/src/sdl/i_ttf.c +++ b/src/sdl/i_ttf.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2011 by Callum Dickinson. // diff --git a/src/sdl/i_ttf.h b/src/sdl/i_ttf.h index a8c839581..3244dd73f 100644 --- a/src/sdl/i_ttf.h +++ b/src/sdl/i_ttf.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2011 by Callum Dickinson. // diff --git a/src/sdl/i_video.cpp b/src/sdl/i_video.cpp index 3be4a69ab..e2422964b 100644 --- a/src/sdl/i_video.cpp +++ b/src/sdl/i_video.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/macosx/mac_alert.c b/src/sdl/macosx/mac_alert.c index a130659a4..625b0235d 100644 --- a/src/sdl/macosx/mac_alert.c +++ b/src/sdl/macosx/mac_alert.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/macosx/mac_alert.h b/src/sdl/macosx/mac_alert.h index b807956ad..5d718b523 100644 --- a/src/sdl/macosx/mac_alert.h +++ b/src/sdl/macosx/mac_alert.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/macosx/mac_resources.c b/src/sdl/macosx/mac_resources.c index 35ac33864..d9856c0d4 100644 --- a/src/sdl/macosx/mac_resources.c +++ b/src/sdl/macosx/mac_resources.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/sdl/macosx/mac_resources.h b/src/sdl/macosx/mac_resources.h index 1590835a7..640e4edd8 100644 --- a/src/sdl/macosx/mac_resources.h +++ b/src/sdl/macosx/mac_resources.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c index 41b5681a2..b6b9e72f9 100644 --- a/src/sdl/mixer_sound.c +++ b/src/sdl/mixer_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/sdl/new_sound.cpp b/src/sdl/new_sound.cpp index a4549745b..3ded71879 100644 --- a/src/sdl/new_sound.cpp +++ b/src/sdl/new_sound.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/ogl_sdl.c b/src/sdl/ogl_sdl.c index 6739cfbcd..17eb1b8b3 100644 --- a/src/sdl/ogl_sdl.c +++ b/src/sdl/ogl_sdl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl/ogl_sdl.h b/src/sdl/ogl_sdl.h index da513c490..7eb122c49 100644 --- a/src/sdl/ogl_sdl.h +++ b/src/sdl/ogl_sdl.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl/rhi_gl2_platform.cpp b/src/sdl/rhi_gl2_platform.cpp index 4a9bd8ffc..e22fdceaf 100644 --- a/src/sdl/rhi_gl2_platform.cpp +++ b/src/sdl/rhi_gl2_platform.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/rhi_gl2_platform.hpp b/src/sdl/rhi_gl2_platform.hpp index 9daa71e7d..ea892fce5 100644 --- a/src/sdl/rhi_gl2_platform.hpp +++ b/src/sdl/rhi_gl2_platform.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/rhi_gles2_platform.cpp b/src/sdl/rhi_gles2_platform.cpp index c83fd6ed3..8fc70feff 100644 --- a/src/sdl/rhi_gles2_platform.cpp +++ b/src/sdl/rhi_gles2_platform.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/rhi_gles2_platform.hpp b/src/sdl/rhi_gles2_platform.hpp index 690a4f362..99c56cbe8 100644 --- a/src/sdl/rhi_gles2_platform.hpp +++ b/src/sdl/rhi_gles2_platform.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Ronald "Eidolon" Kinard -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by Ronald "Eidolon" Kinard +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sdl/sdl_sound.c b/src/sdl/sdl_sound.c index aaf035648..2637be3a0 100644 --- a/src/sdl/sdl_sound.c +++ b/src/sdl/sdl_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 1996 by id Software, Inc. // diff --git a/src/sdl/sdlmain.h b/src/sdl/sdlmain.h index f273dc198..03657e5f9 100644 --- a/src/sdl/sdlmain.h +++ b/src/sdl/sdlmain.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/sdl12/hwsym_sdl.c b/src/sdl12/hwsym_sdl.c index 7c2ef68c4..55b151aa8 100644 --- a/src/sdl12/hwsym_sdl.c +++ b/src/sdl12/hwsym_sdl.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/sdl12/i_main.c b/src/sdl12/i_main.c index 11f032ef8..8141454e3 100644 --- a/src/sdl12/i_main.c +++ b/src/sdl12/i_main.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl12/i_system.c b/src/sdl12/i_system.c index 2364be17b..18d28abd4 100644 --- a/src/sdl12/i_system.c +++ b/src/sdl12/i_system.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl12/i_video.c b/src/sdl12/i_video.c index 3780bd6ee..b264c596a 100644 --- a/src/sdl12/i_video.c +++ b/src/sdl12/i_video.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sdl12/sdl_sound.c b/src/sdl12/sdl_sound.c index 6ac607eaf..c73f5c1cd 100644 --- a/src/sdl12/sdl_sound.c +++ b/src/sdl12/sdl_sound.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/slope_anchors.c b/src/slope_anchors.c index 8508dbef5..f777d5c80 100644 --- a/src/slope_anchors.c +++ b/src/slope_anchors.c @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by James Robert Roman. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/sounds.c b/src/sounds.c index 7e5ac1b73..4de9f3119 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/sounds.h b/src/sounds.h index bed72efa2..5609710da 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/st_stuff.c b/src/st_stuff.c index f81aa535f..fef6481dc 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/st_stuff.h b/src/st_stuff.h index 4fca31d5a..6dfc6b39a 100644 --- a/src/st_stuff.h +++ b/src/st_stuff.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/string.c b/src/string.c index 69806c8a5..3a4ddc6e4 100644 --- a/src/string.c +++ b/src/string.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2006 by Graue. // diff --git a/src/stun.cpp b/src/stun.cpp index ee981dd2e..11bc8cd74 100644 --- a/src/stun.cpp +++ b/src/stun.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/stun.h b/src/stun.h index e42694789..81f14f582 100644 --- a/src/stun.h +++ b/src/stun.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/tables.c b/src/tables.c index 69c88e96b..2a1e791e0 100644 --- a/src/tables.c +++ b/src/tables.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/tables.h b/src/tables.h index 5c842817d..5b05b5aa2 100644 --- a/src/tables.h +++ b/src/tables.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/taglist.c b/src/taglist.c index 3421326a5..8264aab4f 100644 --- a/src/taglist.c +++ b/src/taglist.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Nev3r. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/taglist.h b/src/taglist.h index b701dd745..81c210a10 100644 --- a/src/taglist.h +++ b/src/taglist.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Nev3r. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. diff --git a/src/tmap.nas b/src/tmap.nas index 8414e810b..c5bcda5f9 100644 --- a/src/tmap.nas +++ b/src/tmap.nas @@ -1,6 +1,6 @@ ;; DR. ROBOTNIK'S RING RACERS ;;----------------------------------------------------------------------------- -;; Copyright (C) 2024 by Kart Krew. +;; Copyright (C) 2025 by Kart Krew. ;; Copyright (C) 2020 by Sonic Team Junior. ;; Copyright (C) 2000 by DooM Legacy Team. ;; diff --git a/src/tmap.s b/src/tmap.s index c0966c6be..e8f7745d9 100644 --- a/src/tmap.s +++ b/src/tmap.s @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/tmap_asm.s b/src/tmap_asm.s index b6fe90e56..d23f48940 100644 --- a/src/tmap_asm.s +++ b/src/tmap_asm.s @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/tmap_mmx.nas b/src/tmap_mmx.nas index a584e3341..a7a90c72b 100644 --- a/src/tmap_mmx.nas +++ b/src/tmap_mmx.nas @@ -1,6 +1,6 @@ ;; DR. ROBOTNIK'S RING RACERS ;;----------------------------------------------------------------------------- -;; Copyright (C) 2024 by Kart Krew. +;; Copyright (C) 2025 by Kart Krew. ;; Copyright (C) 2020 by Sonic Team Junior. ;; Copyright (C) 2000 by DOSDOOM. ;; diff --git a/src/tmap_vc.nas b/src/tmap_vc.nas index 4a365843a..dbf1bd7f0 100644 --- a/src/tmap_vc.nas +++ b/src/tmap_vc.nas @@ -1,6 +1,6 @@ ;; DR. ROBOTNIK'S RING RACERS ;;----------------------------------------------------------------------------- -;; Copyright (C) 2024 by Kart Krew. +;; Copyright (C) 2025 by Kart Krew. ;; Copyright (C) 2020 by Sonic Team Junior. ;; Copyright (C) 2000 by DooM Legacy Team. ;; diff --git a/src/typedef.h b/src/typedef.h index 75e4cedce..03ecea75d 100644 --- a/src/typedef.h +++ b/src/typedef.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/v_draw.cpp b/src/v_draw.cpp index ae813d3f9..bb60b73c2 100644 --- a/src/v_draw.cpp +++ b/src/v_draw.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/v_draw.hpp b/src/v_draw.hpp index c53b02b1e..a5913a2b5 100644 --- a/src/v_draw.hpp +++ b/src/v_draw.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/v_draw_setter.hpp b/src/v_draw_setter.hpp index 5827558d7..43cba8c2a 100644 --- a/src/v_draw_setter.hpp +++ b/src/v_draw_setter.hpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman -// Copyright (C) 2024 by Kart Krew +// Copyright (C) 2025 by James Robert Roman +// Copyright (C) 2025 by Kart Krew // // This program is free software distributed under the // terms of the GNU General Public License, version 2. diff --git a/src/v_video.cpp b/src/v_video.cpp index 05f6c4ed7..374fb572d 100644 --- a/src/v_video.cpp +++ b/src/v_video.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/v_video.h b/src/v_video.h index 61467e641..a41da4de5 100644 --- a/src/v_video.h +++ b/src/v_video.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/vid_copy.s b/src/vid_copy.s index 70a1eb70c..c5ac639a2 100644 --- a/src/vid_copy.s +++ b/src/vid_copy.s @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/w_wad.cpp b/src/w_wad.cpp index 1c4dbde49..4bc6ace5d 100644 --- a/src/w_wad.cpp +++ b/src/w_wad.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/w_wad.h b/src/w_wad.h index a928ffc44..2da6b8aa4 100644 --- a/src/w_wad.h +++ b/src/w_wad.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/src/win32/afxres.h b/src/win32/afxres.h index 02b634e39..288478a57 100644 --- a/src/win32/afxres.h +++ b/src/win32/afxres.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32/win_dbg.c b/src/win32/win_dbg.c index d23765ca3..df326cc81 100644 --- a/src/win32/win_dbg.c +++ b/src/win32/win_dbg.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32/win_dbg.h b/src/win32/win_dbg.h index 9e15e8135..26344afb3 100644 --- a/src/win32/win_dbg.h +++ b/src/win32/win_dbg.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_dbg.c b/src/win32ce/win_dbg.c index 2cc299ccd..280fe9d34 100644 --- a/src/win32ce/win_dbg.c +++ b/src/win32ce/win_dbg.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_dll.c b/src/win32ce/win_dll.c index 6e6037b1e..65f547ecd 100644 --- a/src/win32ce/win_dll.c +++ b/src/win32ce/win_dll.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_dll.h b/src/win32ce/win_dll.h index eaa4390bb..4bfb53516 100644 --- a/src/win32ce/win_dll.h +++ b/src/win32ce/win_dll.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_main.c b/src/win32ce/win_main.c index 044f7450f..8a1b4eca3 100644 --- a/src/win32ce/win_main.c +++ b/src/win32ce/win_main.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_sys.c b/src/win32ce/win_sys.c index 5aa11b842..40f454bf4 100644 --- a/src/win32ce/win_sys.c +++ b/src/win32ce/win_sys.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/win32ce/win_vid.c b/src/win32ce/win_vid.c index 2d65c1897..68b797fe3 100644 --- a/src/win32ce/win_vid.c +++ b/src/win32ce/win_vid.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // diff --git a/src/y_inter.cpp b/src/y_inter.cpp index a1c3fc796..23fdf5fe3 100644 --- a/src/y_inter.cpp +++ b/src/y_inter.cpp @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/y_inter.h b/src/y_inter.h index 393d5abce..572b4a6d1 100644 --- a/src/y_inter.h +++ b/src/y_inter.h @@ -1,7 +1,7 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Vivian "toastergrl" Grannell. -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Vivian "toastergrl" Grannell. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // // This program is free software distributed under the diff --git a/src/z_zone.cpp b/src/z_zone.cpp index 1d80b8fc6..b5f73450b 100644 --- a/src/z_zone.cpp +++ b/src/z_zone.cpp @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2006 by Graue. // diff --git a/src/z_zone.h b/src/z_zone.h index 0e544134f..689756c73 100644 --- a/src/z_zone.h +++ b/src/z_zone.h @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by Kart Krew. +// Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. diff --git a/tools/export-drpc-faces.c b/tools/export-drpc-faces.c index 02688d510..73cd294c3 100644 --- a/tools/export-drpc-faces.c +++ b/tools/export-drpc-faces.c @@ -1,6 +1,6 @@ // DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- -// Copyright (C) 2024 by James Robert Roman +// Copyright (C) 2025 by James Robert Roman // // This program is free software distributed under the // terms of the GNU General Public License, version 2.