compaction: Less than is the new greater than. Fixes #558.
parent
180cf219bc
commit
106ecdb6dd
|
@ -273,7 +273,7 @@ struct code_compaction_fixup {
|
|||
|
||||
code_block *translate_code(const code_block *compiled)
|
||||
{
|
||||
if(compiled >= *code_finger)
|
||||
if(compiled < *code_finger)
|
||||
return fixup_code((code_block *)compiled);
|
||||
else
|
||||
return (code_block *)compiled;
|
||||
|
|
Loading…
Reference in New Issue