Merge pull request #1505 from ajrhacker/console_fix

Fix Clang build (nw)
This commit is contained in:
Vas Crabb 2016-10-13 15:04:43 +11:00 committed by GitHub
commit 745d679bed
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ static console_frontend *gConsole = nullptr;
//-------------------------------------------------
console_frontend::console_frontend(emu_options &options, osd_interface &osd)
: m_options(options),
m_osd(osd),
: //m_options(options),
//m_osd(osd),
m_run(true),
m_wait(false),
m_prompt("\x1b[1;36m[MAME]\x1b[0m> ")

View File

@ -32,8 +32,8 @@ private:
void cmd_quit(std::vector<std::string>& arg);
// internal state
emu_options & m_options;
osd_interface & m_osd;
//emu_options & m_options;
//osd_interface & m_osd;
std::atomic<bool> m_run;
std::atomic<bool> m_wait;
std::string m_prompt;