Removed dataPathOrg/App config options, changed example config

This commit is contained in:
Mathew Velasquez 2015-11-17 15:41:31 -05:00
parent 5118df09f4
commit eee13befa7
3 changed files with 0 additions and 33 deletions

View file

@ -153,8 +153,6 @@ void Config::read(int argc, char *argv[])
PO_DESC(gameFolder, std::string, ".") \
PO_DESC(anyAltToggleFS, bool, false) \
PO_DESC(allowSymlinks, bool, false) \
PO_DESC(dataPathOrg, std::string, "") \
PO_DESC(dataPathApp, std::string, "") \
PO_DESC(iconPath, std::string, "") \
PO_DESC(execName, std::string, "Game") \
PO_DESC(midi.soundFont, std::string, "") \
@ -227,9 +225,6 @@ void Config::read(int argc, char *argv[])
SE.sourceCount = clamp(SE.sourceCount, 1, 64);
if (!dataPathOrg.empty() && !dataPathApp.empty())
customDataPath = prefPath(dataPathOrg.c_str(), dataPathApp.c_str());
commonDataPath = prefPath(".", "Oneshot");
//Hardcode some ini/version settings

View file

@ -53,9 +53,6 @@ struct Config
bool allowSymlinks;
bool pathCache;
std::string dataPathOrg;
std::string dataPathApp;
std::string iconPath;
std::string execName;