diff options
Diffstat (limited to 'src/emu/mame.h')
-rw-r--r-- | src/emu/mame.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/mame.h b/src/emu/mame.h index 03d3dae3892..7f0c2b1ed37 100644 --- a/src/emu/mame.h +++ b/src/emu/mame.h @@ -18,8 +18,6 @@ #include <time.h> -#include "webengine.h" - class osd_interface; //************************************************************************** @@ -89,7 +87,6 @@ public: osd_interface &osd() const; emu_options &options() const { return m_options; } - web_engine *web() { return &m_web; } lua_engine *lua() { return &m_lua; } running_machine *machine() { return m_machine; } @@ -105,7 +102,6 @@ private: osd_interface & m_osd; // reference to OSD system emu_options & m_options; // reference to options - web_engine m_web; lua_engine m_lua; const game_driver * m_new_driver_pending; // pointer to the next pending driver |