mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 19:01:06 +00:00
Fix an out-by-one in the definition of INT_MAX.
INT_MAX wound up being INT_MIN :/
This commit is contained in:
parent
6ec5bb1884
commit
dc22d06905
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
#ifndef __ruamoko_runtime_h_
|
||||
#define __ruamoko_runtime_h_
|
||||
|
||||
#define INT_MAX 2147483648
|
||||
#define INT_MAX 2147483647
|
||||
#define INT_MIN (-INT_MAX - 1)
|
||||
|
||||
#define UINT_MAX 4294967295U
|
||||
|
|
Loading…
Reference in a new issue