diff options
author | 2020-11-24 12:54:27 -0500 | |
---|---|---|
committer | 2020-11-24 12:54:27 -0500 | |
commit | 563b656605d7c691482bdee8820512e10e76753d (patch) | |
tree | 02f6bd66122a6f42cee6fbaa2fc6141d5e8e3d96 | |
parent | a026c6f167bfedf810fc98f8b589d109fe591875 (diff) |
psx.cpp: Fix clang error: private field 'm_cd_param_p' is not used [-Werror,-Wunused-private-field] (&etc.)
-rw-r--r-- | src/mame/drivers/psx.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mame/drivers/psx.cpp b/src/mame/drivers/psx.cpp index dd0aef1ad39..1c766e85f32 100644 --- a/src/mame/drivers/psx.cpp +++ b/src/mame/drivers/psx.cpp @@ -51,15 +51,6 @@ public: private: std::vector<uint8_t> m_exe_buffer; - int m_cd_param_p; - int m_cd_result_p; - int m_cd_result_c; - int m_cd_result_ready; - int m_cd_reset; - uint8_t m_cd_stat; - uint8_t m_cd_io_status; - uint8_t m_cd_param[8]; - uint8_t m_cd_result[8]; inline void ATTR_PRINTF(3,4) verboselog( int n_level, const char *s_fmt, ... ); void psxexe_conv32(uint32_t *uint32); int load_psxexe(std::vector<uint8_t> buffer); |