From 969ef3dac93a21d981e4cc2a8c81c0f03a834417 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 22 Apr 2005 17:40:09 +0000 Subject: * Added new virtual base class 'Stream', ReadStream and WriteStream are now subclasses of it. * Added new methods eos(), ioFailed(), clearIOFailed() to all streams. This allows better error checking. * SaveFile classes take advantage of these new standard stream APIS * Removed File::gets() * Added SeekableReadStream::readLine() (replaces File::gets) * Added WriteStream::writeString, for convenience svn-id: r17752 --- simon/saveload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'simon') diff --git a/simon/saveload.cpp b/simon/saveload.cpp index 7892da4f46..658b4c5c6b 100644 --- a/simon/saveload.cpp +++ b/simon/saveload.cpp @@ -590,7 +590,7 @@ bool SimonEngine::load_game(uint slot) { for (i = 0; i != 32; i++) _bit_array[i] = f->readUint16BE(); - if (f->readingFailed()) { + if (f->ioFailed()) { error("load failed"); } -- cgit v1.2.3