summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/devices/imagedev/floppy.cpp2
-rw-r--r--src/zexall/main.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/imagedev/floppy.cpp b/src/devices/imagedev/floppy.cpp
index 38997394ac2..09c9d89429e 100644
--- a/src/devices/imagedev/floppy.cpp
+++ b/src/devices/imagedev/floppy.cpp
@@ -9,7 +9,7 @@
#include "emu.h"
#include "floppy.h"
-#include "speaker.cpp"
+#include "speaker.h"
#include "formats/imageutl.h"
#include "zippath.h"
diff --git a/src/zexall/main.cpp b/src/zexall/main.cpp
index 6c418b77454..1d82da77d96 100644
--- a/src/zexall/main.cpp
+++ b/src/zexall/main.cpp
@@ -83,6 +83,8 @@ int emulator_info::start_frontend(emu_options &options, osd_interface &osd, std:
options.set_value(OSDOPTION_SOUND, "none", OPTION_PRIORITY_MAXIMUM, error_string);
//options.set_value(OPTION_DEBUG, true, OPTION_PRIORITY_MAXIMUM, error_string);
options.set_value(OPTION_THROTTLE, false, OPTION_PRIORITY_MAXIMUM, error_string);
+
+ zexall_machine_manager::instance(options,osd)->start_http_server();
zexall_machine_manager::instance(options,osd)->execute();
return 0;
}