aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/win.h
diff options
context:
space:
mode:
Diffstat (limited to 'pugl/detail/win.h')
-rw-r--r--pugl/detail/win.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/detail/win.h b/pugl/detail/win.h
index 283f39e..949fa90 100644
--- a/pugl/detail/win.h
+++ b/pugl/detail/win.h
@@ -106,11 +106,11 @@ puglWinCreateWindow(const PuglView* const view,
CW_USEDEFAULT, CW_USEDEFAULT,
wr.right-wr.left, wr.bottom-wr.top,
(HWND)view->parent, NULL, NULL, NULL))) {
- return PUGL_CREATE_WINDOW_FAILED;
+ return PUGL_REALIZE_FAILED;
} else if (!(*hdc = GetDC(*hwnd))) {
DestroyWindow(*hwnd);
*hwnd = NULL;
- return PUGL_CREATE_WINDOW_FAILED;
+ return PUGL_REALIZE_FAILED;
}
return PUGL_SUCCESS;