OpenGLRenderer/ContextObject: Fix destruction after move

This commit is contained in:
SirLynix 2024-02-09 13:48:19 +01:00
parent 23645fc398
commit 89c08d3925
1 changed files with 1 additions and 1 deletions

View File

@ -42,8 +42,8 @@ namespace Nz::GL
static constexpr GLuint InvalidObject = 0;
protected:
MovableLiteral<GLuint, InvalidObject> m_objectId;
MovablePtr<const Context> m_context;
MovableValue<GLuint> m_objectId;
};
}