aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci')
-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