We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f532f9 commit 1aaacdeCopy full SHA for 1aaacde
Runtime/CResourceNameDatabase.cpp
@@ -28,9 +28,9 @@ CResourceNameDatabase::CResourceNameDatabase(FileStoreManager& store) {
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 = SBig(mem.Get<u32>());
+ u32 count = mem.Get<u32>();
32
while ((count--) != 0u) {
33
- const CAssetId assetId = SBig(mem.Get<u32>());
+ const CAssetId assetId = mem.Get<u32>();
34
const auto name = mem.Get<std::string>();
35
m_assetNames[assetId] = name;
36
}
0 commit comments