Skip to content
Snippets Groups Projects
Commit 756aef3d authored by D-AIRY's avatar D-AIRY
Browse files

Fixed pointer bug; bump patch version

parent 8ecb0cd7
Branches
Tags version_X.1.1-dev
No related merge requests found
......@@ -292,7 +292,7 @@ QT стиль документирования (!) и QT_AUTOBRIEF - корот
#ifndef __SKYXENGINE_H
#define __SKYXENGINE_H
#define SKYXENGINE_VERSION "X.1.0-dev"
#define SKYXENGINE_VERSION "X.1.1-dev"
#define SKYXENGINE_VERSION4EDITORS "SkyXEngine version " ## SKYXENGINE_VERSION
......
......@@ -151,7 +151,7 @@ CWindow::CWindow(HINSTANCE hInst, UINT uId, const XWINDOW_DESC *pWindowDesc, IXW
DwmEnableBlurBehindWindow(m_hWnd, &dwmBlur);
}
SetWindowLongPtr(m_hWnd, GWLP_USERDATA, (LONG)this);
SetWindowLongPtr(m_hWnd, GWLP_USERDATA, (LONG_PTR)this);
ShowWindow(m_hWnd, SW_NORMAL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment