- fixed: Direct native functions for the JIT compiler may not return bool.

A bool will only set the al register on x64, but the entire eax needs to be set for the JIT code to deal with it.
This commit is contained in:
Christoph Oelckers 2018-12-05 18:41:19 +01:00
parent de5ab0b4b6
commit e4e86dd4f8

View file

@ -149,7 +149,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(DBlockLinesIterator, CreateFromPos, CreateBLIFromP
ACTION_RETURN_OBJECT(Create<DBlockLinesIterator>(x, y, z, h, radius, sec)); ACTION_RETURN_OBJECT(Create<DBlockLinesIterator>(x, y, z, h, radius, sec));
} }
static bool BLINext(DBlockLinesIterator *self) static int BLINext(DBlockLinesIterator *self)
{ {
return self->Next(&self->cres); return self->Next(&self->cres);
} }
@ -226,7 +226,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(DBlockThingsIterator, CreateFromPos, CreateBTIFrom
ACTION_RETURN_OBJECT(Create<DBlockThingsIterator>(x, y, z, h, radius, ignore, nullptr)); ACTION_RETURN_OBJECT(Create<DBlockThingsIterator>(x, y, z, h, radius, ignore, nullptr));
} }
static bool NextBTI(DBlockThingsIterator *bti) static int NextBTI(DBlockThingsIterator *bti)
{ {
return bti->iterator.Next(&bti->cres); return bti->iterator.Next(&bti->cres);
} }