summaryrefslogtreecommitdiffstatshomepage
path: root/src/zexall/main.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2017-03-26 14:05:03 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2017-03-26 14:05:03 +0200
commit1ea759ce924e5223d6b242d89700ea52fc35b26f (patch)
tree9ce1248c047e7e7abc5ac1049c65ed9b452b554b /src/zexall/main.cpp
parenta97c0fbe87a189f49cf82dedce433393b33d342d (diff)
Fix compile error noticed on VS (nw)
Diffstat (limited to 'src/zexall/main.cpp')
-rw-r--r--src/zexall/main.cpp2
1 files changed, 2 insertions, 0 deletions
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;
}