- modified icons to properly work with windows (bothh ico files and vc++ projeect files etc)

This commit is contained in:
Mark Vejvoda
2010-06-25 22:04:40 +00:00
parent 1a8250d2d2
commit 15ee2da57f
18 changed files with 96 additions and 19 deletions

View File

@@ -65,9 +65,17 @@ Window::Window() {
lastMouseEvent = 0;
mousePos = Vec2i(0);
mouseState.clear();
#ifdef WIN32
init_win32();
#endif
}
Window::~Window() {
#ifdef WIN32
done_win32();
#endif
assert(global_window == this);
global_window = 0;
}