clang compile fix. (nw)

This commit is contained in:
Curt Coder 2014-05-30 12:13:31 +00:00
parent 16fd7b383b
commit 81b4c86e26
2 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,7 @@ web_engine::web_engine(emu_options &options)
: m_options(options),
m_machine(NULL),
m_server(NULL),
m_lastupdatetime(0),
//m_lastupdatetime(0),
m_exiting_core(false)
{

View File

@ -39,7 +39,7 @@ private:
emu_options & m_options;
running_machine * m_machine;
struct mg_server * m_server;
osd_ticks_t m_lastupdatetime;
//osd_ticks_t m_lastupdatetime;
bool m_exiting_core;
};