summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/memory.c')
-rw-r--r--src/emu/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/memory.c b/src/emu/memory.c
index e8bddfe42e9..fc4b79971d0 100644
--- a/src/emu/memory.c
+++ b/src/emu/memory.c
@@ -2868,7 +2868,7 @@ void address_table::setup_range_masked(offs_t addrstart, offs_t addrend, offs_t
}
while (base_address != end_address + 1);
- // Efficient method to go the the next range start given a mirroring mask
+ // Efficient method to go to the next range start given a mirroring mask
base_mirror = (base_mirror + 1 + ~bytemirror) & bytemirror;
}
while (base_mirror);