CResourceEntry: Eliminate sign conversion warning
This commit is contained in:
parent
92fe105e82
commit
1adb20dc0b
|
@ -241,7 +241,7 @@ bool CResourceEntry::IsInDirectory(CVirtualDirectory *pDir) const
|
||||||
|
|
||||||
uint64 CResourceEntry::Size() const
|
uint64 CResourceEntry::Size() const
|
||||||
{
|
{
|
||||||
if (mCachedSize == -1)
|
if (mCachedSize == UINT64_MAX)
|
||||||
{
|
{
|
||||||
if (HasCookedVersion())
|
if (HasCookedVersion())
|
||||||
mCachedSize = FileUtil::FileSize(CookedAssetPath());
|
mCachedSize = FileUtil::FileSize(CookedAssetPath());
|
||||||
|
|
Loading…
Reference in New Issue