Remove pointless NULL check against block in recompiler loop.

This commit is contained in:
SarahW 2019-01-27 20:52:59 +00:00
commit 7b3b6a745d

View file

@ -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];