| 921 | } |
| 922 | |
| 923 | void FCEUI_SelectStateNext(int n) |
| 924 | { |
| 925 | if(n>0) |
| 926 | CurrentState=(CurrentState+1)%10; |
| 927 | else |
| 928 | CurrentState=(CurrentState+9)%10; |
| 929 | FCEUI_SelectState(CurrentState, 1); |
| 930 | } |
| 931 | |
| 932 | int FCEUI_SelectState(int w, int show) |
| 933 | { |
no test coverage detected