mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
[saco] Update DumpMain(...)
This commit is contained in:
parent
ab608ee0ef
commit
ff72a169a7
@ -10,8 +10,10 @@
|
||||
PCONTEXT pContextRecord;
|
||||
extern HANDLE hInstance;
|
||||
extern CGame *pGame;
|
||||
extern CNetGame *pNetGame;
|
||||
extern DWORD dwScmOpcodeDebug;
|
||||
extern BOOL bScmLocalDebug;
|
||||
extern int iGtaVersion;
|
||||
extern WORD wLastRendObj;
|
||||
|
||||
CHAR szErrorString[16384];
|
||||
@ -132,7 +134,17 @@ void DumpMain(BOOL bIncModules)
|
||||
sprintf(s,"\r\nSCM Op: 0x%X, lDbg: %d LastRendObj: %u\r\n", dwScmOpcodeDebug, bScmLocalDebug, wLastRendObj);
|
||||
strcat(szErrorString,s);
|
||||
|
||||
// TODO: DumpMain 100605B0
|
||||
const char *szGameVersion = (iGtaVersion == GTASA_VERSION_USA10) ? "US 1.0" :
|
||||
(iGtaVersion == GTASA_VERSION_EU10) ? "EU 1.0" :
|
||||
"UNKNOWN";
|
||||
sprintf(s, "\r\nGame Version: %s\r\n", szGameVersion);
|
||||
strcat(szErrorString,s);
|
||||
|
||||
if(pNetGame)
|
||||
{
|
||||
DumpNetworkStateInformation(s);
|
||||
strcat(szErrorString,s);
|
||||
}
|
||||
|
||||
if (bIncModules)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user