Allow exiting on returns to 0 (should fix test regression)
This commit is contained in:
parent
90605fcbe0
commit
2fde9f96a4
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ namespace ARMeilleure.Translation
|
||||||
{
|
{
|
||||||
address = ExecuteSingle(context, address);
|
address = ExecuteSingle(context, address);
|
||||||
}
|
}
|
||||||
while (context.Running && address != 0);
|
while (context.Running && (address & ~1UL) != 0);
|
||||||
|
|
||||||
NativeInterface.UnregisterThread();
|
NativeInterface.UnregisterThread();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue