summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drivers/empty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/drivers/empty.cpp')
-rw-r--r--src/emu/drivers/empty.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/emu/drivers/empty.cpp b/src/emu/drivers/empty.cpp
index 4dea1cceb9d..9b907214487 100644
--- a/src/emu/drivers/empty.cpp
+++ b/src/emu/drivers/empty.cpp
@@ -2,15 +2,18 @@
// copyright-holders:Aaron Giles
/*************************************************************************
- empty.c
+ empty.cpp
Empty driver.
**************************************************************************/
#include "emu.h"
+
#include "emuopts.h"
-#include "render.h"
+#include "main.h"
+#include "screen.h"
+
//**************************************************************************
// DRIVER STATE
@@ -24,6 +27,8 @@ public:
void ___empty(machine_config &config);
+ virtual std::vector<std::string> searchpath() const override { return std::vector<std::string>(); }
+
protected:
virtual void machine_start() override
{
@@ -60,7 +65,6 @@ void empty_state::___empty(machine_config &config)
//**************************************************************************
ROM_START( ___empty )
- ROM_REGION( 0x10, "user1", ROMREGION_ERASEFF )
ROM_END