aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/object.h
diff options
context:
space:
mode:
authorStrangerke2012-06-13 11:28:25 +0200
committerStrangerke2012-06-13 11:28:25 +0200
commit2e7b16a8bdb6ad1cf51046d57eb0f5406ee2cc13 (patch)
tree2ac5e685d51b6ab4780fb4cbfaa66576071d9569 /engines/hugo/object.h
parent04b6af91765ddf9d1c5c5ec6f9722795bf2e4f27 (diff)
downloadscummvm-rg350-2e7b16a8bdb6ad1cf51046d57eb0f5406ee2cc13.tar.gz
scummvm-rg350-2e7b16a8bdb6ad1cf51046d57eb0f5406ee2cc13.tar.bz2
scummvm-rg350-2e7b16a8bdb6ad1cf51046d57eb0f5406ee2cc13.zip
HUGO: Apply coding convention (in progress)
Diffstat (limited to 'engines/hugo/object.h')
-rw-r--r--engines/hugo/object.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/hugo/object.h b/engines/hugo/object.h
index 84c20db041..8f8043dbbc 100644
--- a/engines/hugo/object.h
+++ b/engines/hugo/object.h
@@ -35,14 +35,14 @@
namespace Hugo {
struct target_t { // Secondary target for action
- uint16 nounIndex; // Secondary object
- uint16 verbIndex; // Action on secondary object
+ uint16 _nounIndex; // Secondary object
+ uint16 _verbIndex; // Action on secondary object
};
struct uses_t { // Define uses of certain objects
- int16 objId; // Primary object
- uint16 dataIndex; // String if no secondary object matches
- target_t *targets; // List of secondary targets
+ int16 _objId; // Primary object
+ uint16 _dataIndex; // String if no secondary object matches
+ target_t *_targets; // List of secondary targets
};
class ObjectHandler {