Merge branch 'master' of https://github.com/rheit/zdoom
# Conflicts: # src/CMakeLists.txt
This commit is contained in:
commit
7ce670951b
72 changed files with 627 additions and 489 deletions
|
|
@ -784,7 +784,7 @@ void I_Quit()
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void STACK_ARGS I_FatalError(const char *error, ...)
|
||||
void I_FatalError(const char *error, ...)
|
||||
{
|
||||
static BOOL alreadyThrown = false;
|
||||
gameisdead = true;
|
||||
|
|
@ -824,7 +824,7 @@ void STACK_ARGS I_FatalError(const char *error, ...)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void STACK_ARGS I_Error(const char *error, ...)
|
||||
void I_Error(const char *error, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
char errortext[MAX_ERRORTEXT];
|
||||
|
|
@ -1051,6 +1051,11 @@ static void DoPrintStr(const char *cp, HWND edit, HANDLE StdOut)
|
|||
|
||||
static TArray<FString> bufferedConsoleStuff;
|
||||
|
||||
void I_DebugPrint(const char *cp)
|
||||
{
|
||||
OutputDebugStringA(cp);
|
||||
}
|
||||
|
||||
void I_PrintStr(const char *cp)
|
||||
{
|
||||
if (con_debugoutput)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue