Fix compile error noticed on VS (nw)

This commit is contained in:
Miodrag Milanovic 2017-03-26 14:05:03 +02:00 committed by Vas Crabb
parent fa2c6e5829
commit 0dd55128b9
2 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,7 @@
#include "emu.h"
#include "floppy.h"
#include "speaker.cpp"
#include "speaker.h"
#include "formats/imageutl.h"
#include "zippath.h"

View File

@ -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;
}