| 246 | } |
| 247 | |
| 248 | static int EnableBattery(FCEUFILE *fp) { |
| 249 | FCEU_printf(" Battery-backed.\n"); |
| 250 | if (FCEU_fgetc(fp) == EOF) |
| 251 | return(0); |
| 252 | UNIFCart.battery = 1; |
| 253 | return(1); |
| 254 | } |
| 255 | |
| 256 | static int LoadPRG(FCEUFILE *fp) { |
| 257 | int z, t; |
nothing calls this directly
no test coverage detected