Remove pointless NULL check against block in recompiler loop.
This commit is contained in:
parent
6c65c34bd3
commit
7b3b6a745d
1 changed files with 1 additions and 1 deletions
|
|
@ -601,7 +601,7 @@ void exec386_dynarec(int cycs)
|
|||
codeblock_t *block = &codeblock[codeblock_hash[hash]];
|
||||
int valid_block = 0;
|
||||
|
||||
if (block && !cpu_state.abrt)
|
||||
if (!cpu_state.abrt)
|
||||
{
|
||||
page_t *page = &pages[phys_addr >> 12];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue