mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 07:29:21 +00:00
obrstr + Debug
This commit is contained in:
parent
4070cad4a7
commit
a12c01e10a
4 changed files with 221 additions and 5 deletions
|
@ -2,10 +2,19 @@
|
|||
|
||||
class CDebug
|
||||
{
|
||||
static int ms_nCurrentTextLine;
|
||||
enum
|
||||
{
|
||||
MAX_LINES = 15,
|
||||
MAX_STR_LEN = 80,
|
||||
};
|
||||
|
||||
static int16 ms_nCurrentTextLine;
|
||||
static char ms_aTextBuffer[MAX_LINES][MAX_STR_LEN];
|
||||
|
||||
public:
|
||||
static void DebugInitTextBuffer();
|
||||
static void DebugDisplayTextBuffer();
|
||||
|
||||
static void DebugAddText(const char *str);
|
||||
};
|
||||
|
||||
extern bool gbDebugStuffInRelease;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue