mirror of
https://github.com/mangosfour/server.git
synced 2025-12-29 16:37:04 +00:00
[11910] Implement loading for MMap Generator
This commit is contained in:
parent
d3606fb4ee
commit
df3a5f2808
8 changed files with 48 additions and 1 deletions
|
|
@ -35,6 +35,12 @@ namespace VMAP
|
|||
#include "Errors.h"
|
||||
#include "Log.h"
|
||||
#define ERROR_LOG(...) sLog.outError(__VA_ARGS__);
|
||||
#elif defined MMAP_GENERATOR
|
||||
#include <assert.h>
|
||||
#define MANGOS_ASSERT(x) assert(x)
|
||||
#define DEBUG_LOG(...) 0
|
||||
#define DETAIL_LOG(...) 0
|
||||
#define ERROR_LOG(...) do{ printf("ERROR:"); printf(__VA_ARGS__); printf("\n"); } while(0)
|
||||
#else
|
||||
#include <assert.h>
|
||||
#define MANGOS_ASSERT(x) assert(x)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue