d_com_inf_game debug (#3075)

* d_com_inf_game debug

* inline sorting
This commit is contained in:
Jcw87
2026-01-29 18:58:59 -08:00
committed by GitHub
parent 46b0f095c5
commit dbee7c8f1f
20 changed files with 4425 additions and 4123 deletions
+2 -4
View File
@@ -59,15 +59,13 @@ inline T cLib_minMaxLimit(T val, T min, T max) {
template <typename T>
inline T cLib_maxLimit(T val, T max) {
T ret;
T var_r30;
if (val > max) {
var_r30 = max;
ret = max;
} else {
var_r30 = val;
ret = val;
}
ret = var_r30;
return (T)ret;
}