Sdk/Binding: Fix querying argument of type IpAddress

Former-commit-id: f080b4b9463aa0a7f0f881105c3b2c15f50e788e
This commit is contained in:
Lynix
2016-05-03 22:44:01 +02:00
parent f44abfb87c
commit 176b1e9042

View File

@@ -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;
}
}