Generate wrenAllocateForeign() to match the other setSlot methods.
Thanks, Michel!
This commit is contained in:
+1
-1
@@ -135,7 +135,7 @@ void fileAllocate(WrenVM* vm)
|
||||
{
|
||||
// Store the file descriptor in the foreign data, so that we can get to it
|
||||
// in the finalizer.
|
||||
int* fd = (int*)wrenAllocateForeign(vm, sizeof(int));
|
||||
int* fd = (int*)wrenSetSlotNewForeign(vm, 0, 0, sizeof(int));
|
||||
*fd = (int)wrenGetSlotDouble(vm, 1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user