summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pugl/pugl_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp
index 32ca6fb..28112ad 100644
--- a/pugl/pugl_win.cpp
+++ b/pugl/pugl_win.cpp
@@ -143,7 +143,7 @@ puglCreateWindow(PuglView* view, const char* title)
RECT mr = { 0, 0, view->min_width, view->min_height };
AdjustWindowRectEx(&mr, winFlags, FALSE, WS_EX_TOPMOST);
view->min_width = mr.right - mr.left;
- view->min_height = wr.bottom - mr.top;
+ view->min_height = mr.bottom - mr.top;
}
}