From a1a9702f24b868f2e5d9189ea83f00bb73272bbf Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 23 Nov 2008 20:54:55 +0000 Subject: Oops, removed the *actual* unused code, and fixed my previous incorrect commit. DOTT and S&M work correctly again svn-id: r35162 --- engines/scumm/file_nes.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'engines/scumm/file_nes.h') diff --git a/engines/scumm/file_nes.h b/engines/scumm/file_nes.h index 20d82376bd..b255705922 100644 --- a/engines/scumm/file_nes.h +++ b/engines/scumm/file_nes.h @@ -88,15 +88,11 @@ public: bool openSubFile(const Common::String &filename); void close(); + bool eos() const { return _stream->eos(); } int32 pos() const { return _stream->pos(); } int32 size() const { return _stream->size(); } bool seek(int32 offs, int whence = SEEK_SET) { return _stream->seek(offs, whence); } - -// Unused -#if 0 - bool eos() const { return _stream->eos(); } uint32 read(void *dataPtr, uint32 dataSize) { return _stream->read(dataPtr, dataSize); } -#endif }; } // End of namespace Scumm -- cgit v1.2.3