mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
more workaround (nw)
This commit is contained in:
parent
5d48b92701
commit
93a1a444d2
@ -121,8 +121,8 @@ machine_manager::~machine_manager()
|
||||
{
|
||||
if (options().http())
|
||||
m_server->stop();
|
||||
if (m_server_thread.joinable())
|
||||
m_server_thread.join();
|
||||
if (m_server_thread.joinable())
|
||||
m_server_thread.join();
|
||||
}
|
||||
|
||||
void machine_manager::start_http_server()
|
||||
|
@ -44,7 +44,8 @@ protected:
|
||||
|
||||
private:
|
||||
// device iterator
|
||||
typedef device_type_iterator<device_creator<DeviceType>, DeviceType> iterator;
|
||||
static constexpr device_type TYPE = device_creator<DeviceType>;
|
||||
typedef device_type_iterator<TYPE, DeviceType> iterator;
|
||||
|
||||
DeviceType * m_device;
|
||||
int m_count;
|
||||
|
Loading…
Reference in New Issue
Block a user