Skip to content

Commit 416af51

Browse files
committed
Update year to 2026
1 parent 980e4d0 commit 416af51

34 files changed

+46
-44
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
1+
Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
22

33
This software is provided "as-is", without any express or implied warranty. In no event
44
will the authors be held liable for any damages arising from the use of this software.

examples/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# > PLATFORM_ANDROID:
3131
# - Android (ARM, ARM64)
3232
#
33-
# Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
33+
# Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
3434
#
3535
# This software is provided "as-is", without any express or implied warranty. In no event
3636
# will the authors be held liable for any damages arising from the use of this software.
@@ -205,10 +205,12 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_DESKTOP_GLFW)
205205
endif
206206
endif
207207
ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
208-
MAKE = mingw32-make
208+
ifeq ($(PLATFORM_OS),WINDOWS)
209+
MAKE = mingw32-make
210+
endif
209211
endif
210212
ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_RGFW))
211-
ifeq ($(OS),Windows_NT)
213+
ifeq ($(PLATFORM_OS),WINDOWS)
212214
MAKE = mingw32-make
213215
else
214216
EMMAKE != type emmake

examples/Makefile.Web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# > PLATFORM_ANDROID:
3131
# - Android (ARM, ARM64)
3232
#
33-
# Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
33+
# Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
3434
#
3535
# This software is provided "as-is", without any express or implied warranty. In no event
3636
# will the authors be held liable for any damages arising from the use of this software.
@@ -208,7 +208,7 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
208208
MAKE = mingw32-make
209209
endif
210210
ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_RGFW))
211-
ifeq ($(OS),Windows_NT)
211+
ifeq ($(PLATFORM_OS),WINDOWS)
212212
MAKE = mingw32-make
213213
else
214214
EMMAKE != type emmake

projects/VSCode/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* This example has been created using raylib 1.0 (www.raylib.com)
1616
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
1717
*
18-
* Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
18+
* Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
1919
*
2020
********************************************************************************************/
2121

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# Many thanks to Milan Nikolic (@gen2brain) for implementing Android platform pipeline.
3434
# Many thanks to Emanuele Petriglia for his contribution on GNU/Linux pipeline.
3535
#
36-
# Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
36+
# Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
3737
#
3838
# This software is provided "as-is", without any express or implied warranty. In no event
3939
# will the authors be held liable for any damages arising from the use of this software.

src/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* LICENSE: zlib/libpng
88
*
9-
* Copyright (c) 2018-2025 Ahmad Fatoum & Ramon Santamaria (@raysan5)
9+
* Copyright (c) 2018-2026 Ahmad Fatoum and Ramon Santamaria (@raysan5)
1010
*
1111
* This software is provided "as-is", without any express or implied warranty. In no event
1212
* will the authors be held liable for any damages arising from the use of this software.

src/external/rl_gputex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
*
6363
* LICENSE: zlib/libpng
6464
*
65-
* Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
65+
* Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
6666
*
6767
* This software is provided "as-is", without any express or implied warranty. In no event
6868
* will the authors be held liable for any damages arising from the use of this software.

src/platforms/rcore_android.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* LICENSE: zlib/libpng
2929
*
30-
* Copyright (c) 2013-2025 Ramon Santamaria (@raysan5) and contributors
30+
* Copyright (c) 2013-2026 Ramon Santamaria (@raysan5) and contributors
3131
*
3232
* This software is provided "as-is", without any express or implied warranty. In no event
3333
* will the authors be held liable for any damages arising from the use of this software.

src/platforms/rcore_desktop_glfw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* LICENSE: zlib/libpng
3232
*
33-
* Copyright (c) 2013-2025 Ramon Santamaria (@raysan5) and contributors
33+
* Copyright (c) 2013-2026 Ramon Santamaria (@raysan5) and contributors
3434
*
3535
* This software is provided "as-is", without any express or implied warranty. In no event
3636
* will the authors be held liable for any damages arising from the use of this software.

src/platforms/rcore_desktop_rgfw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* LICENSE: zlib/libpng
3131
*
32-
* Copyright (c) 2013-2025 Ramon Santamaria (@raysan5), Colleague Riley and contributors
32+
* Copyright (c) 2013-2026 Ramon Santamaria (@raysan5), Colleague Riley and contributors
3333
*
3434
* This software is provided "as-is", without any express or implied warranty. In no event
3535
* will the authors be held liable for any damages arising from the use of this software.

0 commit comments

Comments
 (0)