aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/debug.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2017-05-26 12:09:02 +0200
committerWillem Jan Palenstijn2017-06-10 21:32:35 +0200
commit6d143e6da3e972fcf69c73028db702e89c53e278 (patch)
treec6c60bea5dc0b16d235f4c6135ca7b24cb25d78c /engines/sci/debug.h
parentb56a49c53e90acc334d8c86d3e3c1f97662e881b (diff)
downloadscummvm-rg350-6d143e6da3e972fcf69c73028db702e89c53e278.tar.gz
scummvm-rg350-6d143e6da3e972fcf69c73028db702e89c53e278.tar.bz2
scummvm-rg350-6d143e6da3e972fcf69c73028db702e89c53e278.zip
SCI: Remove union from Breakpoint
Diffstat (limited to 'engines/sci/debug.h')
-rw-r--r--engines/sci/debug.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/sci/debug.h b/engines/sci/debug.h
index 60fad26671..d7aa1b6e1e 100644
--- a/engines/sci/debug.h
+++ b/engines/sci/debug.h
@@ -48,10 +48,8 @@ enum BreakpointType {
struct Breakpoint {
BreakpointType type;
- union {
- uint32 address; ///< Breakpoints on exports
- reg32_t regAddress; ///< Breakpoints on addresses
- };
+ uint32 address; ///< Breakpoints on exports
+ reg32_t regAddress; ///< Breakpoints on addresses
Common::String name; ///< Breakpoints on selector names
};