DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Debug.c
См. документацию.
1void syncDebugPrint (string s)
2{
3#ifdef INV_DEBUG
4 PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
5#else
6 //Print("" + s); // comment/uncomment to hide/see debug logs
7#endif
8}
9
10void actionDebugPrint (string s)
11{
12#ifdef INV_DEBUG
13 PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
14#else
15 Print("" + s); // comment/uncomment to hide/see debug logs
16#endif
17}
18
19void inventoryDebugPrint (string s)
20{
21#ifdef INV_DEBUG
22 PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
23#else
24 //Print("" + s); // comment/uncomment to hide/see debug logs
25#endif
26}
void syncDebugPrint(string s)
Определения Debug.c:1
void inventoryDebugPrint(string s)
Определения Debug.c:19
void actionDebugPrint(string s)
Определения Debug.c:10
proto void Print(void var)
Prints content of variable to console/log.
proto void PrintToRPT(void var)
Prints content of variable to RPT file (performance warning - each write means fflush!...