| 1514 | } |
| 1515 | |
| 1516 | int FCEU_StateRecorderLoadState(int snapIndex) |
| 1517 | { |
| 1518 | int ret = -1; |
| 1519 | |
| 1520 | if (stateRecorder != nullptr) |
| 1521 | { |
| 1522 | ret = stateRecorder->loadStateByIndex(snapIndex); |
| 1523 | } |
| 1524 | return ret; |
| 1525 | } |
| 1526 | |
| 1527 | int FCEU_StateRecorderGetStateIndex(void) |
| 1528 | { |
nothing calls this directly
no test coverage detected