aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/video.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/video.cpp')
-rw-r--r--engines/gob/video.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/gob/video.cpp b/engines/gob/video.cpp
index 1de25cb594..f4c12ad00e 100644
--- a/engines/gob/video.cpp
+++ b/engines/gob/video.cpp
@@ -38,8 +38,6 @@
#include "gob/dataio.h"
#include "gob/draw.h"
-#include "gob/driver_vga.h"
-
namespace Gob {
Font::Font(const byte *data) : _dataPtr(data) {
@@ -151,7 +149,6 @@ const byte *Font::getCharData(uint8 c) const {
Video::Video(GobEngine *vm) : _vm(vm) {
_doRangeClamp = false;
- _videoDriver = 0;
_surfWidth = 320;
_surfHeight = 200;
@@ -172,21 +169,9 @@ Video::Video(GobEngine *vm) : _vm(vm) {
_dirtyAll = false;
}
-char Video::initDriver(int16 vidMode) {
- if (_videoDriver)
- return 1;
-
- _videoDriver = new VGAVideoDriver();
- return 1;
-}
-
Video::~Video() {
}
-void Video::freeDriver() {
- delete _videoDriver;
-}
-
void Video::initPrimary(int16 mode) {
if ((mode != 3) && (mode != -1))
_vm->validateVideoMode(mode);
@@ -196,9 +181,6 @@ void Video::initPrimary(int16 mode) {
mode = 3;
_vm->_global->_oldMode = mode;
- if (mode != 3)
- Video::initDriver(mode);
-
if (mode != 3) {
initSurfDesc(mode, _surfWidth, _surfHeight, PRIMARY_SURFACE);