mirror of https://github.com/PCSX2/pcsx2.git
12 lines
306 B
C++
12 lines
306 B
C++
#include "CDVD.h"
|
|
#include "ReaderModules.h"
|
|
|
|
Source* TryLoaders(const char* fileName)
|
|
{
|
|
Source *src=NULL;
|
|
if((src=PlainIso::TryLoad(fileName))!=NULL) return src;
|
|
//if((src=CueSheet::TryLoad(fileName))!=NULL) return src;
|
|
//if((src=CloneCD::TryLoad(fileName))!=NULL) return src;
|
|
//error
|
|
return NULL;
|
|
} |