mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-08 16:50:44 +00:00
Fix a crash getting the event name of EID 0
This commit is contained in:
@@ -1126,6 +1126,9 @@ private:
|
||||
if(it != m_EIDNameCache.end())
|
||||
return it.value();
|
||||
|
||||
if(eid == 0)
|
||||
return tr("Capture Start");
|
||||
|
||||
const ActionDescription *action = m_Actions[eid];
|
||||
|
||||
QString name;
|
||||
|
||||
Reference in New Issue
Block a user