mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
QS might crash in a couple of places if a func_t is negative. Lets prevent that from ever being true.
This commit is contained in:
parent
4e0dcb2f8d
commit
32e6191f3f
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
// this file is shared by quake and qcc
|
||||
|
||||
typedef int func_t;
|
||||
typedef unsigned int func_t;
|
||||
typedef int string_t;
|
||||
|
||||
typedef enum
|
||||
|
|
Loading…
Reference in a new issue