mirror of
https://github.com/UberGames/ioef.git
synced 2025-06-02 10:11:28 +00:00
* (bug 3427) Single Player causes SIGBUS on SGI IRIX (Patrick Baggett)
This commit is contained in:
parent
dc3d2457e0
commit
fd69a32508
3 changed files with 15 additions and 15 deletions
|
@ -161,7 +161,7 @@ typedef struct token_s
|
|||
int subtype; //last read token sub type
|
||||
#ifdef NUMBERVALUE
|
||||
unsigned long int intvalue; //integer value
|
||||
double floatvalue; //floating point value
|
||||
float floatvalue; //floating point value
|
||||
#endif //NUMBERVALUE
|
||||
char *whitespace_p; //start of white space before token
|
||||
char *endwhitespace_p; //start of white space before token
|
||||
|
@ -218,7 +218,7 @@ void StripSingleQuotes(char *string);
|
|||
//read a possible signed integer
|
||||
signed long int ReadSignedInt(script_t *script);
|
||||
//read a possible signed floating point number
|
||||
double ReadSignedFloat(script_t *script);
|
||||
float ReadSignedFloat(script_t *script);
|
||||
//set an array with punctuations, NULL restores default C/C++ set
|
||||
void SetScriptPunctuations(script_t *script, punctuation_t *p);
|
||||
//set script flags
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue