mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
ImguiSystem: fix compile error
Small typo; vector template arguments cannot be const pointers.
This commit is contained in:
parent
8de652b4c9
commit
4d2ac77ac7
@ -32,7 +32,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
ImDrawDataSnapshot m_snapshotData;
|
ImDrawDataSnapshot m_snapshotData;
|
||||||
CUtlVector<CImguiSurface* const> m_surfaceList;
|
CUtlVector<CImguiSurface*> m_surfaceList;
|
||||||
|
|
||||||
// Mutex used during swapping and rendering, we draw the windows in the
|
// 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
|
// main thread, and render it in the render thread. The only place this
|
||||||
|
Loading…
x
Reference in New Issue
Block a user