Browse Source

fix windows build

Paul 12 years ago
parent
commit
df661e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      engine/source/platformWin32/winWindow.cc

+ 1 - 1
engine/source/platformWin32/winWindow.cc

@@ -631,7 +631,7 @@ struct WinMessage
    UINT message;
    WPARAM wParam;
    LPARAM lParam;
-
+   WinMessage() {};
    WinMessage(UINT m, WPARAM w, LPARAM l) : message(m), wParam(w), lParam(l) {}
 };