We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aaacde commit f258b3aCopy full SHA for f258b3a
Runtime/CResourceNameDatabase.cpp
@@ -26,8 +26,6 @@ CResourceNameDatabase::CResourceNameDatabase(FileStoreManager& store) {
26
(void)fclose(file);
27
CMemoryInStream mem(inBuf.get(), st.st_size, CMemoryInStream::EOwnerShip::NotOwned);
28
29
- // This is in little endian so we'll need to do some `SBig` calls in order to swap it back to little endian since
30
- // CMemoryInStream swaps.
31
u32 count = mem.Get<u32>();
32
while ((count--) != 0u) {
33
const CAssetId assetId = mem.Get<u32>();
0 commit comments