aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2009-02-21 03:24:35 +0000
committerMax Horn2009-02-21 03:24:35 +0000
commite9e2136c1a83be24214ea4d6b0839dc9f621ca18 (patch)
treea42b250eeb3f0dc15a3e0daf2e282df85ce2df9c
parent5ea92c4c6776196fe57358714c863fc28edcd3dd (diff)
downloadscummvm-rg350-e9e2136c1a83be24214ea4d6b0839dc9f621ca18.tar.gz
scummvm-rg350-e9e2136c1a83be24214ea4d6b0839dc9f621ca18.tar.bz2
scummvm-rg350-e9e2136c1a83be24214ea4d6b0839dc9f621ca18.zip
SCI: cleanup
svn-id: r38654
-rw-r--r--engines/sci/include/vm_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/include/vm_types.h b/engines/sci/include/vm_types.h
index c013ea4db3..8fb865656e 100644
--- a/engines/sci/include/vm_types.h
+++ b/engines/sci/include/vm_types.h
@@ -35,10 +35,10 @@ typedef int seg_id_t; /* Segment ID type */
struct _state; /* engine.h */
-typedef struct {
- guint16 segment;
- guint16 offset;
-} reg_t;
+struct reg_t {
+ uint16 segment;
+ uint16 offset;
+};
#define PREG "%04x:%04x"
#define PRINT_REG(r) (0xffff) & (unsigned) (r).segment, (unsigned) (r).offset