aboutsummaryrefslogtreecommitdiff
path: root/sword2/driver/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/driver/animation.h')
-rw-r--r--sword2/driver/animation.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sword2/driver/animation.h b/sword2/driver/animation.h
index 4841a26d3f..03d4fb0283 100644
--- a/sword2/driver/animation.h
+++ b/sword2/driver/animation.h
@@ -104,10 +104,8 @@ private:
byte pal[4 * 256];
} palettes[50];
#else
- static NewGuiColor lookup2[BITDEPTH * BITDEPTH * 256];
+ static NewGuiColor *lookup;
NewGuiColor *overlay;
- static bool lookupInit;
-
#endif
public:
@@ -129,7 +127,7 @@ private:
void buildLookup(int p, int lines);
bool checkPaletteSwitch();
#else
- void buildLookup2(void);
+ void buildLookup(void);
void plotYUV(NewGuiColor *lut, int width, int height, byte *const *dat);
#endif
};