diff options
author | Max Lingua | 2009-07-13 00:55:30 +0000 |
---|---|---|
committer | Max Lingua | 2009-07-13 00:55:30 +0000 |
commit | 93c91945045b738fb098403228d91bce40b469f7 (patch) | |
tree | 721bf70cd092ecd6f14a2d8f1fd78647ebbcdc9a /common | |
parent | 3427fb3100c84af0d63c8f8136615489fe0c7d47 (diff) | |
download | scummvm-rg350-93c91945045b738fb098403228d91bce40b469f7.tar.gz scummvm-rg350-93c91945045b738fb098403228d91bce40b469f7.tar.bz2 scummvm-rg350-93c91945045b738fb098403228d91bce40b469f7.zip |
Reverted my previous change (fprintf vs fputs),
and properly implemented fputs for stderr case
on PS2 ;-)
svn-id: r42433
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/util.cpp b/common/util.cpp index 5f5e31aa93..e99bbeb12d 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -477,11 +477,7 @@ void NORETURN error(const char *s, ...) { // Print the error message to stderr -#ifndef __PLAYSTATION2__ fputs(buf_output, stderr); -#else - fprintf(stderr, "%s", buf_output); -#endif // Unless this error -originated- within the debugger itself, we // now invoke the debugger, if available / supported. |