mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
Improve usage of initprintf mutex
git-svn-id: https://svn.eduke32.com/eduke32@7908 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
064516c050
commit
c1aff49e4c
1 changed files with 4 additions and 2 deletions
|
@ -726,10 +726,11 @@ void initputs(const char *buf)
|
|||
OSD_Puts(buf);
|
||||
// Bprintf("%s", buf);
|
||||
|
||||
mutex_lock(&m_initprintf);
|
||||
if (Bstrlen(dabuf) + Bstrlen(buf) > 1022)
|
||||
{
|
||||
mutex_lock(&m_initprintf);
|
||||
startwin_puts(dabuf);
|
||||
mutex_unlock(&m_initprintf);
|
||||
Bmemset(dabuf, 0, sizeof(dabuf));
|
||||
}
|
||||
|
||||
|
@ -737,7 +738,9 @@ void initputs(const char *buf)
|
|||
|
||||
if (g_logFlushWindow || Bstrlen(dabuf) > 768)
|
||||
{
|
||||
mutex_lock(&m_initprintf);
|
||||
startwin_puts(dabuf);
|
||||
mutex_unlock(&m_initprintf);
|
||||
#ifndef _WIN32
|
||||
startwin_idle(NULL);
|
||||
#else
|
||||
|
@ -745,7 +748,6 @@ void initputs(const char *buf)
|
|||
#endif
|
||||
Bmemset(dabuf, 0, sizeof(dabuf));
|
||||
}
|
||||
mutex_unlock(&m_initprintf);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue