aboutsummaryrefslogtreecommitdiff
path: root/graphics/jpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/jpeg.h')
-rw-r--r--graphics/jpeg.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/jpeg.h b/graphics/jpeg.h
index 4a9ed1a860..d6d031448b 100644
--- a/graphics/jpeg.h
+++ b/graphics/jpeg.h
@@ -55,7 +55,7 @@ public:
private:
void reset();
- Common::SeekableReadStream *_str;
+ Common::SeekableReadStream *_stream;
uint16 _w, _h;
// Image components
@@ -74,7 +74,9 @@ private:
// Result image for this component
Surface surface;
- } *_components;
+ };
+
+ Component *_components;
// Scan components
uint8 _numScanComp;