WindowWin32: Add missing override specifier

This commit is contained in:
Luke Street 2020-06-13 17:19:51 -04:00
parent 5662ef11dd
commit bd5ea36659
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ public:
VulkanContext::Window* m_windowCtx = nullptr;
void resized(const SWindowRect& rect) {
void resized(const SWindowRect& rect) override {
if (m_windowCtx)
m_ctx->resizeSwapChain(*m_windowCtx, m_surface, m_format, m_colorspace, rect);
}