Sdk/Binding: Fix querying argument of type IpAddress
Former-commit-id: f080b4b9463aa0a7f0f881105c3b2c15f50e788e
This commit is contained in:
parent
f44abfb87c
commit
176b1e9042
|
|
@ -170,7 +170,7 @@ namespace Nz
|
|||
return 1;
|
||||
|
||||
default:
|
||||
*address = *(*static_cast<IpAddress**>(instance.CheckUserdata(index, "IpAddress")));
|
||||
*address = *static_cast<IpAddress*>(instance.CheckUserdata(index, "IpAddress"));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue