- more updating and bug in UpdatePicSize fixed.

This commit is contained in:
Christoph Oelckers 2019-10-15 20:02:37 +02:00
parent 0e165e40a3
commit c3bc690e98
18 changed files with 61 additions and 154 deletions

View file

@ -723,6 +723,11 @@ void initprintf(const char *f, ...)
Bvsnprintf(buf, sizeof(buf), f, va);
va_end(va);
#ifdef _WIN32
if (IsDebuggerPresent())
OutputDebugStringA(buf);
#endif
initputs(buf);
}