aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/view.h')
-rw-r--r--engines/sci/graphics/view.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/engines/sci/graphics/view.h b/engines/sci/graphics/view.h
index d4ec1670bd..5ecf7e6fa3 100644
--- a/engines/sci/graphics/view.h
+++ b/engines/sci/graphics/view.h
@@ -27,13 +27,6 @@
namespace Sci {
-enum Sci32ViewNativeResolution {
- SCI_VIEW_NATIVERES_NONE = -1,
- SCI_VIEW_NATIVERES_320x200 = 0,
- SCI_VIEW_NATIVERES_640x480 = 1,
- SCI_VIEW_NATIVERES_640x400 = 2
-};
-
struct CelInfo {
int16 width, height;
int16 scriptWidth, scriptHeight;
@@ -84,7 +77,6 @@ public:
Palette *getPalette();
bool isScaleable();
- bool isSci2Hires();
void adjustToUpscaledCoordinates(int16 &y, int16 &x);
void adjustBackUpscaledCoordinates(int16 &y, int16 &x);
@@ -106,9 +98,6 @@ private:
bool _embeddedPal;
Palette _viewPalette;
- // specifies scaling resolution for SCI2 views (see gk1/windows, Wolfgang in room 720)
- Sci32ViewNativeResolution _sci2ScaleRes;
-
SciSpan<const byte> _EGAmapping;
// this is set for sci0early to adjust for the getCelRect() change