aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/view.h
diff options
context:
space:
mode:
authorColin Snover2017-09-27 16:44:35 -0500
committerColin Snover2017-09-27 20:27:34 -0500
commita4eb6a5ca55ccf29d905d9947f2355580cf860c3 (patch)
treea9db7365f2515fae6a642b247ee8c9a8fbdb69ba /engines/sci/graphics/view.h
parent7a41b6f023e31a5f6845b9a256d966270fa60151 (diff)
downloadscummvm-rg350-a4eb6a5ca55ccf29d905d9947f2355580cf860c3.tar.gz
scummvm-rg350-a4eb6a5ca55ccf29d905d9947f2355580cf860c3.tar.bz2
scummvm-rg350-a4eb6a5ca55ccf29d905d9947f2355580cf860c3.zip
SCI: Remove old SCI32 view scaling code from SCI16 graphics code
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