- bugfix for custom data path

This commit is contained in:
Mark Vejvoda 2012-01-24 16:14:49 +00:00
parent ff4c327261
commit ebe45d253a
2 changed files with 5 additions and 3 deletions

View File

@ -211,7 +211,7 @@ bool EndsWith(const string &str, const string& key);
void endPathWithSlash(string &path, bool requireOSSlash=false);
void trimPathWithStartingSlash(string &path);
void updatePathClimbingParts(string &path);
void formatPath(string &path);
string formatPath(string path);
string replaceAll(string& context, const string& from, const string& to);
bool removeFile(string file);

View File

@ -500,9 +500,11 @@ void endPathWithSlash(string &path,bool requireOSSlash) {
}
}
void formatPath(string &path) {
string formatPath(string path) {
replaceAll(path, "\"", "");
replaceAll(path, "//", "/");
return path;
}
void trimPathWithStartingSlash(string &path) {
@ -1595,7 +1597,7 @@ void restoreVideoMode(bool exitingApp) {
if(exitingApp == true && SDL_WasInit(SDL_INIT_VIDEO)) {
SDL_ShowCursor(1);
SDL_WM_GrabInput(SDL_GRAB_OFF);
//SDL_SetGamma(1, 1, 1);
SDL_SetGamma(1, 1, 1);
}
}