mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-28 07:48:37 -04:00
dcparser: fix uint32s being signed on Windows
This commit is contained in:
parent
fe9cda9614
commit
d1d0dab990
@ -195,7 +195,7 @@ unpack_object() {
|
||||
case PT_uint:
|
||||
{
|
||||
unsigned int value = _this->unpack_uint();
|
||||
object = PyLong_FromLong(value);
|
||||
object = PyLong_FromUnsignedLong(value);
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user