kichikuou / xsystem35-sdl2

Multi-platform implementation of AliceSoft's System3.x game engine.
https://kichikuou.github.io/web/
GNU General Public License v2.0
57 stars 8 forks source link

texthook: explicitly flush stdout every line #16

Closed nunuhara closed 4 years ago

nunuhara commented 4 years ago

This allows processing the output line-by-line by a script. Otherwise, glibc fully buffers the output and the script wont get any input until the buffer is full.

kichikuou commented 4 years ago

Thanks!