MCPcopy Create free account
hub / github.com/TASEmulators/fceux / FCEU_isFileInArchive

Function FCEU_isFileInArchive

src/file.cpp:785–794  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

783}
784
785bool 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

Callers 3

FCEUMOV_ReadStateFunction · 0.85
mainFunction · 0.85
UpdateReplayDialogFunction · 0.85

Calls 2

FCEU_fopenFunction · 0.85
isArchiveMethod · 0.45

Tested by

no test coverage detected