mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
fix unsigned int prob
This commit is contained in:
parent
5cdaa0e708
commit
3daaac9892
@ -114,7 +114,7 @@ int PipeStreamBuf::underflow(void) {
|
|||||||
#else /* WIN32_VC */
|
#else /* WIN32_VC */
|
||||||
memcpy(base()+(len-n), buf, n);
|
memcpy(base()+(len-n), buf, n);
|
||||||
#endif /* WIN32_VC */
|
#endif /* WIN32_VC */
|
||||||
gbump(-n);
|
gbump(-((int)n));
|
||||||
}
|
}
|
||||||
delete buf;
|
delete buf;
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user