aboutsummaryrefslogtreecommitdiff
path: root/source/65c816.h
diff options
context:
space:
mode:
authoraliaspider2014-10-29 10:11:16 +0100
committeraliaspider2014-10-29 10:11:16 +0100
commit4fb67d24cdde1e085d09a699ed2f5d68c306f534 (patch)
tree92fbe54e835ca1c799f15b250241929681a26a99 /source/65c816.h
parent9c8d36087b5b35c35c7ff9276a15d400ce45f519 (diff)
downloadsnesemu-4fb67d24cdde1e085d09a699ed2f5d68c306f534.tar.gz
snesemu-4fb67d24cdde1e085d09a699ed2f5d68c306f534.tar.bz2
snesemu-4fb67d24cdde1e085d09a699ed2f5d68c306f534.zip
get rid of all remaining C++ code.
Diffstat (limited to 'source/65c816.h')
-rw-r--r--source/65c816.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/65c816.h b/source/65c816.h
index 04b591c..eee60b3 100644
--- a/source/65c816.h
+++ b/source/65c816.h
@@ -154,7 +154,7 @@ typedef union
uint16 W;
} pair;
-struct SRegisters{
+typedef struct {
uint8 PB;
uint8 DB;
pair P;
@@ -164,7 +164,7 @@ struct SRegisters{
pair X;
pair Y;
uint16 PC;
-};
+}SRegisters;
#endif