changed FileBaseInfo constructor to please gcc and quiet warnings
This commit is contained in:
parent
30d847a9b3
commit
595df73847
14
src/file.h
14
src/file.h
|
@ -72,13 +72,15 @@ struct FCEUFILE {
|
|||
};
|
||||
|
||||
struct FileBaseInfo {
|
||||
FileBaseInfo() {}
|
||||
FileBaseInfo(std::string fbd, std::string fb, std::string ext)
|
||||
: filebasedirectory(fbd)
|
||||
, filebase(fb)
|
||||
, ext(ext)
|
||||
{}
|
||||
std::string filebase, filebasedirectory, ext;
|
||||
FileBaseInfo() {}
|
||||
FileBaseInfo(std::string fbd, std::string fb, std::string ex)
|
||||
{
|
||||
filebasedirectory = fbd;
|
||||
filebase = fb;
|
||||
ext = ex;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
struct ArchiveScanRecord
|
||||
|
|
Loading…
Reference in New Issue