| 1813 | s_selectMemoryTab = true; |
| 1814 | } |
| 1815 | |
| 1816 | void RequestDeferredReload(const char* modPath) |
| 1817 | { |
| 1818 | // Route through the Application's between-frames re-mount request (serviced at the top |
| 1819 | // of AppIdle, before any simulate/draw). Running the reload inside Render()/BackToFront |
| 1820 | // instead — mid-frame, after Simulate — left the rebuilt world's first Simulate touching |
| 1821 | // a torn-down sensor list (null SensorList, SensorList::CheckPos crash). |
| 1822 | Poseidon::GApp->RequestRemountWithMods(modPath); |
| 1823 | } |
| 1824 | |
| 1825 | bool WantsKeyboard() |
no test coverage detected