| Previous | 199869 Revisions | Next |
| r31167 Wednesday 2nd July, 2014 at 18:26:13 UTC by Oliver Stöneberg |
|---|
| improved exception reporting in cli_frontend (nw) |
| [src/emu] | clifront.c |
| r31166 | r31167 | |
|---|---|---|
| 274 | 274 | osd_printf_error("Caught unhandled emulator exception\n"); |
| 275 | 275 | m_result = MAMERR_FATALERROR; |
| 276 | 276 | } |
| 277 | catch (std:: | |
| 277 | catch (std::exception &ex) | |
| 278 | 278 | { |
| 279 | osd_printf_error(" | |
| 279 | osd_printf_error("Caught unhandled %s exception: %s\n", typeid(ex).name(), ex.what()); | |
| 280 | 280 | m_result = MAMERR_FATALERROR; |
| 281 | 281 | } |
| 282 | 282 | catch (...) |
| Previous | 199869 Revisions | Next |