mirror of
https://github.com/holub/mame
synced 2025-04-20 07:22:04 +03:00
fixed zexall build target [RandomArts]
This commit is contained in:
parent
b289455bc9
commit
e7499acfb1
@ -79,10 +79,10 @@ zexall_machine_manager* zexall_machine_manager::m_manager = nullptr;
|
||||
int emulator_info::start_frontend(emu_options &options, osd_interface &osd, std::vector<std::string> &args)
|
||||
{
|
||||
std::string error_string;
|
||||
options.set_value(OSDOPTION_VIDEO, "none", OPTION_PRIORITY_MAXIMUM, error_string);
|
||||
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);
|
||||
options.set_value(OSDOPTION_VIDEO, "none", OPTION_PRIORITY_MAXIMUM);
|
||||
options.set_value(OSDOPTION_SOUND, "none", OPTION_PRIORITY_MAXIMUM);
|
||||
//options.set_value(OPTION_DEBUG, true, OPTION_PRIORITY_MAXIMUM);
|
||||
options.set_value(OPTION_THROTTLE, false, OPTION_PRIORITY_MAXIMUM);
|
||||
|
||||
zexall_machine_manager::instance(options,osd)->start_http_server();
|
||||
zexall_machine_manager::instance(options,osd)->execute();
|
||||
@ -107,7 +107,7 @@ void emulator_info::periodic_check() { }
|
||||
|
||||
bool emulator_info::frame_hook() { return false; }
|
||||
|
||||
void emulator_info::layout_file_cb(util::xml::data_node &layout) { }
|
||||
void emulator_info::layout_file_cb(util::xml::data_node const &layout) { }
|
||||
|
||||
const char * emulator_info::get_appname() { return nullptr; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user