fixes + starting on window resizing

This commit is contained in:
2026-02-20 20:35:08 +00:00
parent 253fd3006a
commit e4124c0aaf
5 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ namespace cve {
void CveWindow::initWindow() {
glfwInit();
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE);
window = glfwCreateWindow(width, height,
windowName.c_str(), nullptr, nullptr);