Skip to content

Commit

Permalink
Fix for bug 1906
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@44125 379a1393-f5fb-40a0-bcee-ef074d9b53f7
  • Loading branch information
OldWoman37 committed Jun 26, 2023
1 parent 323503b commit 07efbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vice/src/c128/c128mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1833,7 +1833,7 @@ void mem_initialize_go64_memory_bank(uint8_t shared_mem)
}

/* $4000-$bfff is always current ram bank*/
for (j = 0x40; j <= 0xbd; j++) {
for (j = 0x40; j <= 0xbf; j++) {
if (c64mem_read_base_tab[base + i][j]) {
mem_read_base_tab[base + i][j] = ram_bank;
}
Expand Down

0 comments on commit 07efbdd

Please sign in to comment.