aboutsummaryrefslogtreecommitdiff
path: root/src/device/oprom/x86emu/decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device/oprom/x86emu/decode.c')
-rw-r--r--src/device/oprom/x86emu/decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/oprom/x86emu/decode.c b/src/device/oprom/x86emu/decode.c
index d59583c53f..b7a6f35b51 100644
--- a/src/device/oprom/x86emu/decode.c
+++ b/src/device/oprom/x86emu/decode.c
@@ -1138,9 +1138,9 @@ Return the offset given by "mod" addressing.
unsigned decode_rmXX_address(int mod, int rm)
{
- if(mod == 0)
+ if (mod == 0)
return decode_rm00_address(rm);
- if(mod == 1)
+ if (mod == 1)
return decode_rm01_address(rm);
return decode_rm10_address(rm);
}