1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-05 03:47:58 +00:00

removed init.cpp

This commit is contained in:
Zeno Rogue
2019-09-05 09:01:47 +02:00
parent 9df8f76b53
commit 98ddecc63e
6 changed files with 62 additions and 62 deletions

View File

@@ -27,6 +27,10 @@ EX FILE *debugfile;
#define DF_KEYS "imwesxufgbtopl"
#endif
EX int debugflags = DF_INIT | DF_ERROR | DF_WARN | DF_MSG | DF_TIME | DF_LOG;
EX string s0;
EX string its(int i) { char buf[64]; sprintf(buf, "%d", i); return buf; }
EX string itsh8(int i) {static char buf[16]; sprintf(buf, "%08X", i); return buf; }