aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2002-10-23 12:03:58 +0000
committerMax Horn2002-10-23 12:03:58 +0000
commit5c54e3533bd246141b9fba4918e18f66d123ce43 (patch)
treeaba7438ab328fe2b9c04c1e0207c1382e0c4b048
parent09e9143725955299baf0d3bea7f96c7f6263c9dd (diff)
downloadscummvm-rg350-5c54e3533bd246141b9fba4918e18f66d123ce43.tar.gz
scummvm-rg350-5c54e3533bd246141b9fba4918e18f66d123ce43.tar.bz2
scummvm-rg350-5c54e3533bd246141b9fba4918e18f66d123ce43.zip
removed obsolete stuff
svn-id: r5284
-rw-r--r--scumm/scumm.h5
-rw-r--r--scumm/scummvm.cpp4
2 files changed, 0 insertions, 9 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index eb767a47ed..222b13eea2 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -365,10 +365,6 @@ public:
/* Init functions, etc */
byte _fastMode;
- const char *getGameName();
-
- /* video buffer */
- byte *_videoBuffer;
/* system call object */
@@ -423,7 +419,6 @@ public:
/* Core variable definitions */
byte _gameId;
- const char *_gameText;
/* Core class/array definitions */
Gdi gdi;
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 8006db19da..6dbd90b424 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -82,7 +82,6 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst)
_bootParam = detector->_bootParam;
_exe_name = (char*)detector->_gameFileName.c_str();
_gameId = detector->_gameId;
- _gameText = detector->_gameText;
_features = detector->_features;
_soundCardType = detector->_soundCardType;
_noSubtitles = detector->_noSubtitles;
@@ -1483,9 +1482,6 @@ void Scumm::launch()
_verbRedraw = false;
- // Create a primary virtual screen
- _videoBuffer = (byte *)calloc((_realWidth + 8) * _realHeight, 1);
-
allocResTypeData(rtBuffer, MKID('NONE'), 10, "buffer", 0);
initVirtScreen(0, 0, 0, _realWidth, _realHeight, false, false);