aboutsummaryrefslogtreecommitdiff
path: root/base/game.cpp
diff options
context:
space:
mode:
authorMax Horn2008-01-10 12:00:10 +0000
committerMax Horn2008-01-10 12:00:10 +0000
commit0ec8d35e4da14d6af53ead8001063b6ecf5f0fc5 (patch)
tree3ef028c02d9c516ece9e98710cf5d98cdb16e4c7 /base/game.cpp
parent80e776e0fbd69846802cea1c8864369bbf2eb6f3 (diff)
downloadscummvm-rg350-0ec8d35e4da14d6af53ead8001063b6ecf5f0fc5.tar.gz
scummvm-rg350-0ec8d35e4da14d6af53ead8001063b6ecf5f0fc5.tar.bz2
scummvm-rg350-0ec8d35e4da14d6af53ead8001063b6ecf5f0fc5.zip
Revert accidental commits in rev 30372
svn-id: r30374
Diffstat (limited to 'base/game.cpp')
-rw-r--r--base/game.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/base/game.cpp b/base/game.cpp
index a79cfddec9..9aaaf3a6af 100644
--- a/base/game.cpp
+++ b/base/game.cpp
@@ -25,8 +25,6 @@
#include "base/game.h"
#include "base/plugins.h"
-#include "graphics/surface.h"
-
const PlainGameDescriptor *findPlainGameDescriptor(const char *gameid, const PlainGameDescriptor *list) {
const PlainGameDescriptor *g = list;
@@ -68,15 +66,6 @@ void GameDescriptor::updateDesc(const char *extra) {
}
}
-void SaveStateDescriptor::setThumbnail(Graphics::Surface *t) {
- if (_thumbnail && _thumbnail != t) {
- _thumbnail->free();
- delete _thumbnail;
- }
- _thumbnail = t;
-}
-
-
namespace Base {
// TODO: Find a better name & place for this function.