mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-01 01:16:03 -04:00
Fixes for building on vc12 (vs 2013), these are primarily just missing includes
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
#include "sharedFoundation/ConfigFile.h"
|
||||
#include "sharedFoundation/Os.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
//---------------------------------------------
|
||||
@@ -46,7 +47,7 @@ m_frameTimeHistoryTotalTime(0.0f)
|
||||
{
|
||||
m_frameTimeHistorySize = 1;
|
||||
}
|
||||
m_frameTimeHistory.reserve(m_frameTimeHistorySize);
|
||||
m_frameTimeHistory.resize(m_frameTimeHistorySize);
|
||||
for (int i = 0; i < m_frameTimeHistorySize; ++i)
|
||||
{
|
||||
m_frameTimeHistory[i] = 0.0f;
|
||||
|
||||
Reference in New Issue
Block a user