mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 09:23:03 -04:00
express: Fix compile error on Windows
This commit is contained in:
parent
f0791e266b
commit
f77813836d
@ -1495,7 +1495,7 @@ read_index(std::istream &read) {
|
||||
_data_length = reader.get_uint64();
|
||||
size_left -= 8;
|
||||
}
|
||||
if (_header_start == 0xffffffffu && size_left >= 8) {
|
||||
if ((uint64_t)_header_start == 0xffffffffu && size_left >= 8) {
|
||||
_header_start = reader.get_uint64();
|
||||
size_left -= 8;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user