mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Hack up hack number 7328, just to get things to compile.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7329 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -71,8 +71,9 @@ bool SysConf::LoadFromFile(const char *filename)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool SysConf::LoadFromFileInternal(File::IOFile f)
|
||||
bool SysConf::LoadFromFileInternal(FILE *fh)
|
||||
{
|
||||
File::IOFile f(fh);
|
||||
// Fill in infos
|
||||
SSysConfHeader s_Header;
|
||||
f.ReadArray(s_Header.version, 4);
|
||||
|
@ -179,7 +179,7 @@ public:
|
||||
bool Reload();
|
||||
|
||||
private:
|
||||
bool LoadFromFileInternal(File::IOFile f);
|
||||
bool LoadFromFileInternal(FILE *fh);
|
||||
void GenerateSysConf();
|
||||
void Clear();
|
||||
|
||||
|
Reference in New Issue
Block a user