NK-92 - Search Bar In Filebrowser

This commit is contained in:
emerycp
2023-08-01 19:39:38 -04:00
parent b114d27ce2
commit 9159c6236b
4 changed files with 49 additions and 63 deletions

View File

@@ -67,7 +67,7 @@ namespace Nuake
SetWindowIcon("resources/Images/nuake-logo.png");
glfwMakeContextCurrent(m_Window);
//SetVSync(true)
SetVSync(true);
Logger::Log("Driver detected " + std::string(((char*)glGetString(GL_VERSION))), "renderer");
@@ -248,7 +248,7 @@ namespace Nuake
void Window::SetVSync(bool enabled)
{
glfwSwapInterval(enabled ? 0 : 1);
glfwSwapInterval(enabled ? 1: 0);
}
void Window::SetDecorated(bool enabled)