Dead code - remove

This commit is contained in:
simon.kagstrom 2010-02-07 14:34:45 +00:00
parent b9880faf01
commit 89dcf0318d
3 changed files with 1 additions and 19 deletions

View File

@ -124,8 +124,7 @@ public:
Frodo();
void ArgvReceived(int argc, char **argv);
void ReadyToRun(void);
static Prefs *reload_prefs(void);
static char* get_prefs_path() { return prefs_path; };
private:
void load_rom(const char *which, const char *path, uint8 *where, size_t size, const uint8 *builtin);
void load_rom_files();

View File

@ -105,14 +105,6 @@ void Frodo::ReadyToRun(void)
delete TheC64;
}
Prefs *Frodo::reload_prefs(void)
{
static Prefs newprefs;
newprefs.Load(PREFS_PATH);
return &newprefs;
}
/*
* Determine whether path name refers to a directory
*/

View File

@ -145,15 +145,6 @@ void Frodo::ReadyToRun(void)
delete TheC64;
}
Prefs *Frodo::reload_prefs(void)
{
static Prefs newprefs;
newprefs.Load(prefs_path);
return &newprefs;
}
/*
* Determine whether path name refers to a directory
*/