diff options
author | 2016-02-21 11:48:45 +0100 | |
---|---|---|
committer | 2016-02-21 11:48:45 +0100 | |
commit | cc24a339d8c0517259084b5c178d784626ba965c (patch) | |
tree | 9868e9687b5802ae0a3733712a3bbeb3bc75c953 /src/emu/cheat.h | |
parent | b5daabda5495dea5c50e17961ecfed2ea8619d76 (diff) |
Merge remote-tracking branch 'refs/remotes/mamedev/master'
Second attempt
Diffstat (limited to 'src/emu/cheat.h')
-rw-r--r-- | src/emu/cheat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cheat.h b/src/emu/cheat.h index 8e49a8888bb..6badabd14d6 100644 --- a/src/emu/cheat.h +++ b/src/emu/cheat.h @@ -321,8 +321,8 @@ private: running_machine & m_machine; // reference to our machine simple_list<cheat_entry> m_cheatlist; // cheat list UINT64 m_framecount; // frame count - std::string m_output[UI_TARGET_FONT_ROWS * 2]; // array of output strings - UINT8 m_justify[UI_TARGET_FONT_ROWS*2]; // justification for each string + std::vector<std::string> m_output; // array of output strings + std::vector<UINT8> m_justify; // justification for each string UINT8 m_numlines; // number of lines available for output INT8 m_lastline; // last line used for output bool m_disabled; // true if the cheat engine is disabled |