mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-17 10:55:32 +08:00
Fix MSVC error when building for 64bits
This commit is contained in:
@@ -20,8 +20,8 @@ using namespace BlackMisc::Hardware;
|
|||||||
namespace BlackInput
|
namespace BlackInput
|
||||||
{
|
{
|
||||||
|
|
||||||
TCHAR *CJoystickWindows::m_helperWindowClassName = TEXT("SDLHelperWindowInputCatcher");
|
const TCHAR *CJoystickWindows::m_helperWindowClassName = TEXT("SDLHelperWindowInputCatcher");
|
||||||
TCHAR *CJoystickWindows::m_helperWindowName = TEXT("SDLHelperWindowInputMsgWindow");
|
const TCHAR *CJoystickWindows::m_helperWindowName = TEXT("SDLHelperWindowInputMsgWindow");
|
||||||
ATOM CJoystickWindows::m_helperWindowClass = 0;
|
ATOM CJoystickWindows::m_helperWindowClass = 0;
|
||||||
HWND CJoystickWindows::m_helperWindow = nullptr;
|
HWND CJoystickWindows::m_helperWindow = nullptr;
|
||||||
|
|
||||||
|
|||||||
@@ -119,8 +119,8 @@ namespace BlackInput
|
|||||||
|
|
||||||
IJoystick::Mode m_mode = ModeNominal; //!< Current working mode
|
IJoystick::Mode m_mode = ModeNominal; //!< Current working mode
|
||||||
|
|
||||||
static WCHAR *m_helperWindowClassName; //!< Helper window class name
|
static const WCHAR *m_helperWindowClassName; //!< Helper window class name
|
||||||
static WCHAR *m_helperWindowName; //!< Helper window name
|
static const WCHAR *m_helperWindowName; //!< Helper window name
|
||||||
static ATOM m_helperWindowClass;
|
static ATOM m_helperWindowClass;
|
||||||
static HWND m_helperWindow; //!< Helper window handle
|
static HWND m_helperWindow; //!< Helper window handle
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user