From: Frode Solheim Date: Sat, 5 Sep 2015 14:51:44 +0000 (+0200) Subject: consolehook: missing parameter (presumably supposed to be stdout) X-Git-Tag: 3200~81^2 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=5116c1a3478694d7675235b217a4b5b4f034f967;p=francis%2Fwinuae.git consolehook: missing parameter (presumably supposed to be stdout) --- diff --git a/consolehook.cpp b/consolehook.cpp index 8fd32b5f..8002fa36 100644 --- a/consolehook.cpp +++ b/consolehook.cpp @@ -106,7 +106,7 @@ uaecptr consolehook_beginio (uaecptr request) buf = xmalloc (TCHAR, len + 1); au_copy (buf, len, src); buf[len] = 0; - f_out (_T("%s"), buf); + f_out (stdout, _T("%s"), buf); xfree (buf); } else if (cmd == CMD_READ) {