commit 053854daf007c4aeeda43c26de124181e6187cf2
parent 5189086447fc1696087d49679d295022e74e0bbd
Author: falkTX <falktx@gmail.com>
Date: Sun, 19 Apr 2015 16:25:33 +0200
Fix typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dgl/src/pugl/pugl_win.cpp b/dgl/src/pugl/pugl_win.cpp
@@ -136,7 +136,7 @@ puglCreateWindow(PuglView* view, const char* title)
RECT mr = { 0, 0, view->min_width, view->min_height };
AdjustWindowRectEx(&mr, view->parent ? WS_CHILD : 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;
}
}