summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-03-05 10:49:09 +1100
committer Vas Crabb <vas@vastheman.com>2017-03-05 10:49:09 +1100
commit948a031029859907ce026220018da7e118829fb1 (patch)
tree402f8c47641aabc16624dc36b4ba73c715e6aadf /src
parenta011e3a22ef667358e94d4a6deb6ad440b6b35f3 (diff)
fix zexall build (nw)
Diffstat (limited to 'src')
-rw-r--r--src/zexall/main.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/zexall/main.cpp b/src/zexall/main.cpp
index 6b7e2c11e1a..b4e87ddf299 100644
--- a/src/zexall/main.cpp
+++ b/src/zexall/main.cpp
@@ -9,12 +9,16 @@
***************************************************************************/
#include "emu.h"
+
+#include "ui/uimain.h"
+
#include "emuopts.h"
+#include "drivenum.h"
+
#include "xmlfile.h"
+
#include "modules/lib/osdobj_common.h"
-#include "ui/uimain.h"
-#include "drivenum.h"
GAME_EXTERN(zexall);
@@ -24,7 +28,7 @@ const game_driver * const driver_list::s_drivers_sorted[2] =
&GAME_NAME(zexall),
};
-int driver_list::s_driver_count = 2;
+std::size_t const driver_list::s_driver_count = 2;
// ======================> zexall_machine_manager
@@ -95,7 +99,7 @@ void emulator_info::periodic_check() { }
bool emulator_info::frame_hook() { return false; }
-void emulator_info::layout_file_cb(xml_data_node &layout) { }
+void emulator_info::layout_file_cb(util::xml::data_node &layout) { }
const char * emulator_info::get_appname() { return nullptr; }