aboutsummaryrefslogtreecommitdiff
path: root/scumm/object.h
diff options
context:
space:
mode:
authorMax Horn2003-05-28 20:01:47 +0000
committerMax Horn2003-05-28 20:01:47 +0000
commit1f70da01556164c5b39bb0e804e2c919dd7b3c83 (patch)
tree3b39f7df442c0cc00fb9bf93dd33808e7982f89b /scumm/object.h
parent01ac371c6afd94b4987528a49ee2bfe8c1cf84ea (diff)
downloadscummvm-rg350-1f70da01556164c5b39bb0e804e2c919dd7b3c83.tar.gz
scummvm-rg350-1f70da01556164c5b39bb0e804e2c919dd7b3c83.tar.bz2
scummvm-rg350-1f70da01556164c5b39bb0e804e2c919dd7b3c83.zip
const as const can!
svn-id: r8058
Diffstat (limited to 'scumm/object.h')
-rw-r--r--scumm/object.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/object.h b/scumm/object.h
index 69f114f99f..1689799d05 100644
--- a/scumm/object.h
+++ b/scumm/object.h
@@ -136,11 +136,11 @@ struct ImageHeader { /* file format */
#endif
struct FindObjectInRoom {
- CodeHeader *cdhd;
- byte *obcd;
- ImageHeader *imhd;
- byte *obim;
- byte *roomptr;
+ const CodeHeader *cdhd;
+ const byte *obcd;
+ const ImageHeader *imhd;
+ const byte *obim;
+ const byte *roomptr;
};
enum FindObjectWhat {