mirror of
https://github.com/SWG-Source/src.git
synced 2026-09-11 23:45:01 -04:00
Fixes for building on vc12 (vs 2013), these are primarily just missing includes
This commit is contained in:
@@ -12,6 +12,8 @@
|
||||
#include "Archive/Archive.h"
|
||||
#include "sharedFoundation/FormattedString.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
// ======================================================================
|
||||
|
||||
BitArray::BitArray() :
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
#include "sharedFoundation/FirstSharedFoundation.h"
|
||||
#include "sharedFoundation/MessageQueue.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
// ======================================================================
|
||||
|
||||
@@ -617,7 +617,7 @@ void Os::setIMEHookFunction(IMEHookFunction imeHookFunction)
|
||||
ms_IMEHookFunction = imeHookFunction;
|
||||
|
||||
// do not install the hotkey fix if the debugger is present.
|
||||
if (ms_IMEHookFunction && !IsDebuggerPresent())
|
||||
if (ms_IMEHookFunction && !OsNamespace::IsDebuggerPresent())
|
||||
{
|
||||
RegisterHotKey(ms_window, ms_hotKeyId, 0, VK_F5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user