mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 19:28:11 +00:00
uc: Silence unused variable warning
This commit is contained in:
parent
9479199c6b
commit
7de8b9c67f
1 changed files with 1 additions and 1 deletions
2
uc.c
2
uc.c
|
@ -285,7 +285,7 @@ static void ramlist_free_dirty_memory(struct uc_struct *uc)
|
|||
DirtyMemoryBlocks** blocks = uc->ram_list.dirty_memory;
|
||||
|
||||
for (i = 0; i < DIRTY_MEMORY_NUM; i++) {
|
||||
DirtyMemoryBlocks* block = uc->ram_list.dirty_memory[i];
|
||||
DirtyMemoryBlocks* block = blocks[i];
|
||||
int j;
|
||||
|
||||
for (j = 0; j < block->num_blocks; j++) {
|
||||
|
|
Loading…
Reference in a new issue