From 73cfbde8abc4ac2090d58cd506fa1e11641be832 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 13 Jan 2024 18:26:14 -0500 Subject: [PATCH] diimage.h: Remove now-unused function --- src/emu/diimage.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/emu/diimage.h b/src/emu/diimage.h index fb007c005c9..900a4410a05 100644 --- a/src/emu/diimage.h +++ b/src/emu/diimage.h @@ -171,11 +171,6 @@ public: m_file->tell(result); return result; } - bool image_feof() - { - check_for_file(); - return m_file->eof(); - } // allocate and read into buffers u32 fread(std::unique_ptr &ptr, u32 length) { ptr = std::make_unique(length); return fread(ptr.get(), length); }