diff options
author | Joost Peters | 2009-08-14 17:18:03 +0000 |
---|---|---|
committer | Joost Peters | 2009-08-14 17:18:03 +0000 |
commit | edaa4a042237477fa38ddb2957c3a41888730633 (patch) | |
tree | 020082f54dddf0a4b7f266082955dea63317ded3 /graphics/scaler | |
parent | ddf617e2a7fcb0355cadb18156ef3281c9e9ce28 (diff) | |
download | scummvm-rg350-edaa4a042237477fa38ddb2957c3a41888730633.tar.gz scummvm-rg350-edaa4a042237477fa38ddb2957c3a41888730633.tar.bz2 scummvm-rg350-edaa4a042237477fa38ddb2957c3a41888730633.zip |
MIPSpro compilation fixes / workarounds (from a patch by Rainer Canavan)
The hashmap.h change is ugly, but so far the only thing found to work. Suggestions for a better "fix" appreciated!
svn-id: r43380
Diffstat (limited to 'graphics/scaler')
-rw-r--r-- | graphics/scaler/scale2x.h | 5 | ||||
-rw-r--r-- | graphics/scaler/scale3x.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/graphics/scaler/scale2x.h b/graphics/scaler/scale2x.h index cefa14f22a..a6365c113e 100644 --- a/graphics/scaler/scale2x.h +++ b/graphics/scaler/scale2x.h @@ -25,6 +25,11 @@ #define __restrict__ #endif +#ifdef __sgi +#define __restrict__ __restrict +#endif + + typedef unsigned char scale2x_uint8; typedef unsigned short scale2x_uint16; typedef unsigned scale2x_uint32; diff --git a/graphics/scaler/scale3x.h b/graphics/scaler/scale3x.h index 3f24d884e1..671a207570 100644 --- a/graphics/scaler/scale3x.h +++ b/graphics/scaler/scale3x.h @@ -25,6 +25,10 @@ #define __restrict__ #endif +#ifdef __sgi +#define __restrict__ __restrict +#endif + typedef unsigned char scale3x_uint8; typedef unsigned short scale3x_uint16; typedef unsigned scale3x_uint32; |