- fix issue 65 (quads when no image load slowly in shop/deck editor) - Possibly fix issue 92, please let me know if it reproduces - Fix issue 97 (Deck editor: weird behavior of deck display) - Fix issue 39 - please verify - Issue 56 can probably be closed as well - Fix issue 86
18 lines
221 B
C++
18 lines
221 B
C++
#ifndef _LOGGER_H
|
|
#define _LOGGER_H_
|
|
|
|
#ifdef DOLOG
|
|
#define LOG(x) Logger::Log(x);
|
|
#else
|
|
#define LOG(x)
|
|
#endif
|
|
|
|
#define LOG_FILE RESPATH"/debug.txt"
|
|
|
|
class Logger{
|
|
public:
|
|
static void Log(const char * text);
|
|
};
|
|
|
|
#endif
|