mirror of
https://github.com/holub/mame
synced 2025-06-29 23:48:56 +03:00
Fix Clang build (nw)
This commit is contained in:
parent
831f391646
commit
11399d1ea1
@ -22,8 +22,8 @@ static console_frontend *gConsole = nullptr;
|
|||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
|
||||||
console_frontend::console_frontend(emu_options &options, osd_interface &osd)
|
console_frontend::console_frontend(emu_options &options, osd_interface &osd)
|
||||||
: m_options(options),
|
: //m_options(options),
|
||||||
m_osd(osd),
|
//m_osd(osd),
|
||||||
m_run(true),
|
m_run(true),
|
||||||
m_wait(false),
|
m_wait(false),
|
||||||
m_prompt("\x1b[1;36m[MAME]\x1b[0m> ")
|
m_prompt("\x1b[1;36m[MAME]\x1b[0m> ")
|
||||||
|
@ -32,8 +32,8 @@ private:
|
|||||||
|
|
||||||
void cmd_quit(std::vector<std::string>& arg);
|
void cmd_quit(std::vector<std::string>& arg);
|
||||||
// internal state
|
// internal state
|
||||||
emu_options & m_options;
|
//emu_options & m_options;
|
||||||
osd_interface & m_osd;
|
//osd_interface & m_osd;
|
||||||
std::atomic<bool> m_run;
|
std::atomic<bool> m_run;
|
||||||
std::atomic<bool> m_wait;
|
std::atomic<bool> m_wait;
|
||||||
std::string m_prompt;
|
std::string m_prompt;
|
||||||
|
Loading…
Reference in New Issue
Block a user