| 783 | } |
| 784 | |
| 785 | bool FCEU_isFileInArchive(const char *path) |
| 786 | { |
| 787 | bool isarchive = false; |
| 788 | FCEUFILE* fp = FCEU_fopen(path,0,"rb",0,0); |
| 789 | if(fp) { |
| 790 | isarchive = fp->isArchive(); |
| 791 | delete fp; |
| 792 | } |
| 793 | return isarchive; |
| 794 | } |
| 795 | |
| 796 | |
| 797 |
no test coverage detected