diff options
Diffstat (limited to 'src/emu/romload.c')
-rw-r--r-- | src/emu/romload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/romload.c b/src/emu/romload.c index dead855a571..53016deacd4 100644 --- a/src/emu/romload.c +++ b/src/emu/romload.c @@ -1051,7 +1051,7 @@ static UINT32 normalize_flags_for_cpu(running_machine *machine, UINT32 startflag { int cputype = machine->config->cpu[cpunum].type; int buswidth; - + /* set the endianness */ startflags &= ~ROMREGION_ENDIANMASK; if (cputype_endianness(cputype) == CPU_IS_LE) @@ -1070,7 +1070,7 @@ static UINT32 normalize_flags_for_cpu(running_machine *machine, UINT32 startflag startflags |= ROMREGION_32BIT; else startflags |= ROMREGION_64BIT; - + return startflags; } |