diff options
author | Willem Jan Palenstijn | 2011-12-28 13:10:22 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-28 13:12:22 +0100 |
commit | 57e940f67896e0f085de23088754fe1682cd49db (patch) | |
tree | 1c05d1f7bdb461ec9385b7c21ab5a8ad0fe010d1 /engines/dreamweb/dreamgen.cpp | |
parent | 3752396aefc43beba2df6a47221407d805cb3a7b (diff) | |
download | scummvm-rg350-57e940f67896e0f085de23088754fe1682cd49db.tar.gz scummvm-rg350-57e940f67896e0f085de23088754fe1682cd49db.tar.bz2 scummvm-rg350-57e940f67896e0f085de23088754fe1682cd49db.zip |
DREAMWEB: Move all saved variables to a GameVars struct
The data segment is now completely unused.
Diffstat (limited to 'engines/dreamweb/dreamgen.cpp')
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp deleted file mode 100644 index 7f4c8e437a..0000000000 --- a/engines/dreamweb/dreamgen.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* PLEASE DO NOT MODIFY THIS FILE. ALL CHANGES WILL BE LOST! LOOK FOR README FOR DETAILS */ - -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#include "dreamgen.h" - -namespace DreamGen { - - -void DreamGenContext::__start() { - static const uint8 src[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - //0x0000: .... .... .... .... - 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, - //0x0010: .... .... .... .... - 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - //0x0020: .... .... .... .... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x00, 0x00, 0x00, 0xff, 0x00, - //0x0030: .... .... .... .... - 0xff, 0x00, 0x00, 0x30, }; - ds.assign(src, src + sizeof(src)); - dreamweb(); -} - -} // End of namespace DreamGen |