| 488 | } |
| 489 | |
| 490 | void backup(char *name, char *backupname) |
| 491 | { |
| 492 | string backupfile; |
| 493 | copystring(backupfile, findfile(backupname, "wb")); |
| 494 | remove(backupfile); |
| 495 | rename(findfile(name, "wb"), backupfile); |
| 496 | } |
| 497 | |
| 498 | #ifndef STANDALONE |
| 499 | static Sint64 rwopsseek(SDL_RWops *rw, Sint64 offset, int whence) |
no test coverage detected