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 9441549..ad386fb 100644
--- a/pugl/pugl_win.cpp
+++ b/pugl/pugl_win.cpp
@@ -114,7 +114,7 @@ puglCreateWindow(PuglView* view, const char* title)
// Should class be a parameter? Does this make sense on other platforms?
static int wc_count = 0;
char classNameBuf[256];
- _snprintf(classNameBuf, sizeof(classNameBuf), "%s_%d", title, wc_count++);
+ _snprintf(classNameBuf, sizeof(classNameBuf), "x%d%s", wc_count++, title);
classNameBuf[sizeof(classNameBuf) - 1] = '\0';
impl->wc.style = CS_OWNDC;