| 1159 | } |
| 1160 | |
| 1161 | int FCEUI_GetRegion(void) |
| 1162 | { |
| 1163 | int region; |
| 1164 | |
| 1165 | if ( pal_emulation ) |
| 1166 | { |
| 1167 | region = 1; |
| 1168 | } |
| 1169 | else if ( dendy ) |
| 1170 | { |
| 1171 | region = 2; |
| 1172 | } |
| 1173 | else |
| 1174 | { |
| 1175 | region = 0; |
| 1176 | } |
| 1177 | return region; |
| 1178 | } |
| 1179 | |
| 1180 | void FCEUI_SetRegion(int region, int notify) |
| 1181 | { |
no outgoing calls
no test coverage detected