From fd18b5526e0c2b058f175ba140258549fec09098 Mon Sep 17 00:00:00 2001 From: jussi Date: Tue, 2 Jul 2024 14:59:38 +0300 Subject: GuiGetIcons fix and added GuiSetIcons. --- src/rmath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rmath.c') diff --git a/src/rmath.c b/src/rmath.c index 9048b49..1fa9690 100644 --- a/src/rmath.c +++ b/src/rmath.c @@ -3,11 +3,11 @@ #include "rmath.h" #include "lua_core.h" -inline int imin( int a, int b ) { +int imin( int a, int b ) { return a < b ? a : b; } -inline int imax( int a, int b ) { +int imax( int a, int b ) { return a > b ? a : b; } -- cgit v1.2.3