| 1450 | int StateRecorder::lastState = 0; |
| 1451 | |
| 1452 | int FCEU_StateRecorderStart(void) |
| 1453 | { |
| 1454 | if (stateRecorder == nullptr) |
| 1455 | { |
| 1456 | stateRecorder = new StateRecorder(); |
| 1457 | } |
| 1458 | return stateRecorder == nullptr; |
| 1459 | } |
| 1460 | |
| 1461 | int FCEU_StateRecorderStop(void) |
| 1462 | { |
no outgoing calls
no test coverage detected