summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/orao.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/orao.c')
-rw-r--r--src/mess/machine/orao.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/orao.c b/src/mess/machine/orao.c
index f240b2513ed..eaa89dcb8e1 100644
--- a/src/mess/machine/orao.c
+++ b/src/mess/machine/orao.c
@@ -32,7 +32,7 @@ READ8_MEMBER(orao_state::orao_io_r)
{
double level;
- switch(offset) {
+ switch(offset) {
/* Keyboard*/
case 0x07FC : return ioport("LINE0")->read();
case 0x07FD : return ioport("LINE1")->read();
@@ -61,10 +61,10 @@ READ8_MEMBER(orao_state::orao_io_r)
return 0x00;
}
return 0xff;
- }
+ }
- return 0xff;
+ return 0xff;
}