aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/resource.h
diff options
context:
space:
mode:
authormd52011-03-04 21:56:14 +0200
committermd52011-03-04 22:04:13 +0200
commitd95b5331fb266de492c45d348ccb8313ca7824aa (patch)
treec820e2dbc538cfdf63b7a0dbbec03810805d340c /engines/sci/resource.h
parent5b9677da72efadf566be2a666bd9ca44ca35adc8 (diff)
downloadscummvm-rg350-d95b5331fb266de492c45d348ccb8313ca7824aa.tar.gz
scummvm-rg350-d95b5331fb266de492c45d348ccb8313ca7824aa.tar.bz2
scummvm-rg350-d95b5331fb266de492c45d348ccb8313ca7824aa.zip
SCI: Some palette related changes
- Moved palette color count inside the GfxPalette class - Enabled all of the kPalette subops for 16 color SCI1 games, apart from the ones for intensity palette animation, and palette resource loading - Removed isVGA() and isAmiga32color() methods from the resource manager - they ended up in having inconsistent code
Diffstat (limited to 'engines/sci/resource.h')
-rw-r--r--engines/sci/resource.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/resource.h b/engines/sci/resource.h
index 76b5a421ee..e941f666d9 100644
--- a/engines/sci/resource.h
+++ b/engines/sci/resource.h
@@ -331,8 +331,6 @@ public:
int getAudioLanguage() const;
void changeAudioDirectory(Common::String path);
bool isGMTrackIncluded();
- bool isVGA() const { return (_viewType == kViewVga) || (_viewType == kViewVga11); }
- bool isAmiga32color() const { return _viewType == kViewAmiga; }
bool isSci11Mac() const { return _volVersion == kResVersionSci11Mac; }
ViewType getViewType() const { return _viewType; }
const char *getMapVersionDesc() const { return versionDescription(_mapVersion); }