From 65b5d318140c7ff846455a37ec7ae63e635bcdcf Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 19 May 2009 11:42:14 +0000 Subject: COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) svn-id: r40725 --- sound/softsynth/mt32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sound/softsynth') diff --git a/sound/softsynth/mt32.cpp b/sound/softsynth/mt32.cpp index a0457aed62..d662be989e 100644 --- a/sound/softsynth/mt32.cpp +++ b/sound/softsynth/mt32.cpp @@ -109,7 +109,7 @@ public: } bool writeBit8u(MT32Emu::Bit8u out) { _out.writeByte(out); - return !_out.ioFailed(); + return !_out.err(); } bool isEOF() { return _in.isOpen() && _in.eos(); -- cgit v1.2.3