aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-07-24 17:07:16 +0000
committerTorbjörn Andersson2005-07-24 17:07:16 +0000
commitf773d76c5452502a1b9ed4aaa3eaee4d09d6fc43 (patch)
tree4cbe08031fec676eb548c399fd103effe30ed217 /saga
parent830cc9c9b8e35539360bdbe706a500841bf8a5cd (diff)
downloadscummvm-rg350-f773d76c5452502a1b9ed4aaa3eaee4d09d6fc43.tar.gz
scummvm-rg350-f773d76c5452502a1b9ed4aaa3eaee4d09d6fc43.tar.bz2
scummvm-rg350-f773d76c5452502a1b9ed4aaa3eaee4d09d6fc43.zip
Removed "const" to silence GCC warning. I don't know if GCC was right or
wrong to warn, but it annoyed me. svn-id: r18581
Diffstat (limited to 'saga')
-rw-r--r--saga/scene.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/scene.h b/saga/scene.h
index 72bab47ca3..9ab176011e 100644
--- a/saga/scene.h
+++ b/saga/scene.h
@@ -243,7 +243,7 @@ class Scene {
void initDoorsState();
void getBGInfo(BGInfo &bgInfo);
- void getBGPal(PalEntry *&pal) const {
+ void getBGPal(PalEntry *&pal) {
pal = (PalEntry *)_bg.pal;
}