[idd] fix failure to initialize variables

This commit is contained in:
Geoffrey McRae
2026-07-18 03:41:45 +10:00
parent b397b7c66a
commit 2e616ddf79
2 changed files with 10 additions and 9 deletions

View File

@@ -127,8 +127,9 @@ void CFrameBufferResource::Reset()
m_map = NULL;
}
m_base = nullptr;
m_size = 0;
m_base = nullptr;
m_size = 0;
m_frameSize = 0;
m_res.Reset();
m_valid = false;
m_valid = false;
}