mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-16 10:45:45 +00:00
Fix old reference to m_InternalElement as bool
This commit is contained in:
@@ -184,7 +184,7 @@ uint32_t Serialiser<SerialiserMode::Reading>::BeginChunk(uint32_t, uint64_t)
|
||||
m_StructuredFile->chunks.push_back(chunk);
|
||||
m_StructureStack.push_back(chunk);
|
||||
|
||||
m_InternalElement = false;
|
||||
m_InternalElement = 0;
|
||||
}
|
||||
|
||||
return chunkID;
|
||||
@@ -444,7 +444,7 @@ uint32_t Serialiser<SerialiserMode::Writing>::BeginChunk(uint32_t chunkID, uint6
|
||||
m_StructuredFile->chunks.push_back(chunk);
|
||||
m_StructureStack.push_back(chunk);
|
||||
|
||||
m_InternalElement = false;
|
||||
m_InternalElement = 0;
|
||||
}
|
||||
|
||||
return chunkID;
|
||||
|
||||
Reference in New Issue
Block a user