trunk/src/emu/machine.c
| r29582 | r29583 | |
| 299 | 299 | |
| 300 | 300 | // initialize lua |
| 301 | 301 | m_lua_engine.initialize(); |
| 302 | | |
| 303 | | // disallow save state registrations starting here |
| 304 | | m_save.allow_registration(false); |
| 305 | 302 | } |
| 306 | 303 | |
| 307 | 304 | |
| r29582 | r29583 | |
| 351 | 348 | |
| 352 | 349 | // load the configuration settings and NVRAM |
| 353 | 350 | bool settingsloaded = config_load_settings(*this); |
| 351 | |
| 352 | // disallow save state registrations starting here. |
| 353 | // Don't do it earlier, config load can create network |
| 354 | // devices with timers. |
| 355 | m_save.allow_registration(false); |
| 356 | |
| 354 | 357 | nvram_load(); |
| 355 | 358 | sound().ui_mute(false); |
| 356 | 359 | |