mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Revert r7908 because it introduces a race on dabuf
git-svn-id: https://svn.eduke32.com/eduke32@7928 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0f5f35aa85
commit
ea79d74953
1 changed files with 2 additions and 4 deletions
|
@ -726,11 +726,10 @@ 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));
|
||||
}
|
||||
|
||||
|
@ -738,9 +737,7 @@ 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
|
||||
|
@ -748,6 +745,7 @@ void initputs(const char *buf)
|
|||
#endif
|
||||
Bmemset(dabuf, 0, sizeof(dabuf));
|
||||
}
|
||||
mutex_unlock(&m_initprintf);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue