From 9d1a53bef3ca747f3770b8ed3a8a7e2f1f389277 Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Sun, 31 Jul 2016 17:55:26 -0400 Subject: [PATCH] Made a bunch of device_image_interface members private (instead of protected) --- src/emu/diimage.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/emu/diimage.h b/src/emu/diimage.h index 451f8cb5354..71f332170af 100644 --- a/src/emu/diimage.h +++ b/src/emu/diimage.h @@ -292,15 +292,21 @@ protected: std::string m_basename_noext; std::string m_filetype; - // working directory; persists across mounts - std::string m_working_directory; - // Software information std::string m_full_software_name; const software_info *m_software_info_ptr; const software_part *m_software_part_ptr; std::string m_software_list_name; +private: + static image_error_t image_error_from_file_error(osd_file::error filerr); + + // creation info + formatlist_type m_formatlist; + + // working directory; persists across mounts + std::string m_working_directory; + // info read from the hash file/software list std::string m_longname; std::string m_manufacturer; @@ -326,12 +332,6 @@ protected: bool m_user_loadable; bool m_is_loading; - -private: - static image_error_t image_error_from_file_error(osd_file::error filerr); - - // creation info - formatlist_type m_formatlist; }; // iterator