Skip to content

Commit

Permalink
Fix delete vs delete[] mistake in kekko's 3dfx
Browse files Browse the repository at this point in the history
  • Loading branch information
realnc committed May 11, 2020
1 parent 45c9e12 commit 3ff648c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hardware/voodoo_emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3082,7 +3082,7 @@ void voodoo_shutdown() {
free(v->tmu[1].ram);
v->tmu[1].ram = NULL;
}
delete v->thread_stats;
delete[] v->thread_stats;
v->active=false;
}
}
Expand Down

0 comments on commit 3ff648c

Please sign in to comment.