ImguiSystem: fix compile error

Small typo; vector template arguments cannot be const pointers.
This commit is contained in:
Kawe Mazidjatari 2024-11-15 20:10:02 +01:00
parent 8de652b4c9
commit 4d2ac77ac7

View File

@ -32,7 +32,7 @@ public:
private:
ImDrawDataSnapshot m_snapshotData;
CUtlVector<CImguiSurface* const> m_surfaceList;
CUtlVector<CImguiSurface*> m_surfaceList;
// Mutex used during swapping and rendering, we draw the windows in the
// main thread, and render it in the render thread. The only place this