aboutsummaryrefslogtreecommitdiff
path: root/src/65c816.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2016-04-28 21:49:39 +0100
committerIan C <ianc@noddybox.co.uk>2016-04-28 21:49:39 +0100
commit4cd812baa205a70e7dabec57b5be81f5353e6027 (patch)
tree046f219c14b5cc10b12ba5633eae896f376f43a6 /src/65c816.c
parent6b970e749e720404d08cec565fe0157d20fdeaef (diff)
Fixed missing return from function.
Diffstat (limited to 'src/65c816.c')
-rwxr-xr-xsrc/65c816.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/65c816.c b/src/65c816.c
index 6305dd0..2aaf15d 100755
--- a/src/65c816.c
+++ b/src/65c816.c
@@ -588,7 +588,7 @@ do { \
case DIRECT_PAGE: \
PCWrite(base + 0x05); \
PCWrite(address); \
- break; \
+ return CMD_OK; \
\
case DIRECT_PAGE_INDIRECT_LONG: \
PCWrite(base + 0x07); \