summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xbox.cpp')
-rw-r--r--src/mame/machine/xbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/xbox.cpp b/src/mame/machine/xbox.cpp
index 7740b1545b0..d341d9804d5 100644
--- a/src/mame/machine/xbox.cpp
+++ b/src/mame/machine/xbox.cpp
@@ -1521,7 +1521,7 @@ WRITE8_MEMBER(xbox_base_state::superio_write)
superiost.configuration_mode = true;
return;
}
- if ((offset == 0) && (data == 0xaa))
+ if ((offset == 0) && (data == 0xaa))
{
// config port 0x2e
superiost.configuration_mode = false;
@@ -1543,7 +1543,7 @@ WRITE8_MEMBER(xbox_base_state::superio_write)
{
superiost.registers[superiost.selected][superiost.index] = data;
//if ((superiost.selected == 4) && (superiost.index == 0x30) && (data != 0))
- // ; // add handlers 0x3f8- +7
+ // ; // add handlers 0x3f8- +7
}
}
}