mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -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:
|
case PT_uint:
|
||||||
{
|
{
|
||||||
unsigned int value = _this->unpack_uint();
|
unsigned int value = _this->unpack_uint();
|
||||||
object = PyLong_FromLong(value);
|
object = PyLong_FromUnsignedLong(value);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user