From 5184d1594f77a0cef02d7384b4ab411ce5d63330 Mon Sep 17 00:00:00 2001 From: elasota Date: Thu, 28 May 2020 23:10:30 -0400 Subject: [PATCH] Fix comment typo --- GpDisplayDriver_D3D11/GpDisplayDriverD3D11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GpDisplayDriver_D3D11/GpDisplayDriverD3D11.cpp b/GpDisplayDriver_D3D11/GpDisplayDriverD3D11.cpp index a0c891c..176d259 100644 --- a/GpDisplayDriver_D3D11/GpDisplayDriverD3D11.cpp +++ b/GpDisplayDriver_D3D11/GpDisplayDriverD3D11.cpp @@ -1239,7 +1239,7 @@ void GpDisplayDriverD3D11::SetBackgroundColor(uint8_t r, uint8_t g, uint8_t b, u void GpDisplayDriverD3D11::RequestToggleFullScreen(uint32_t timestamp) { - // Alt-Enter gets re-sent after a full-screen toggle, so we ignore toggle requests until half a second has seconds have elapsed + // Alt-Enter gets re-sent after a full-screen toggle, so we ignore toggle requests until half a second has elapsed if (timestamp > m_lastFullScreenToggleTimeStamp + 30) { m_isFullScreenDesired = !m_isFullScreenDesired;