mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
Merge pull request #17 from m888r/clangfix
Small fixes for windows clang compile
This commit is contained in:
commit
3c3a3dba8f
@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
// If we're on Win32, we'll include our minidump writer
|
// If we're on Win32, we'll include our minidump writer
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <Dbghelp.h>
|
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
#include <Dbghelp.h>
|
||||||
|
|
||||||
#include "Game.h"
|
#include "Game.h"
|
||||||
#include "dLogger.h"
|
#include "dLogger.h"
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
// // // // // // //
|
// // // // // // //
|
||||||
|
|
||||||
void NjMonastryBossInstance::OnStartup(Entity *self) {
|
void NjMonastryBossInstance::OnStartup(Entity *self) {
|
||||||
auto spawnerNames = std::vector { LedgeFrakjawSpawner, LowerFrakjawSpawner, BaseEnemiesSpawner + std::to_string(1),
|
auto spawnerNames = std::vector<std::string> { LedgeFrakjawSpawner, LowerFrakjawSpawner, BaseEnemiesSpawner + std::to_string(1),
|
||||||
BaseEnemiesSpawner + std::to_string(2), BaseEnemiesSpawner + std::to_string(3),
|
BaseEnemiesSpawner + std::to_string(2), BaseEnemiesSpawner + std::to_string(3),
|
||||||
BaseEnemiesSpawner + std::to_string(4), CounterweightSpawner };
|
BaseEnemiesSpawner + std::to_string(4), CounterweightSpawner };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user