mirror of
https://github.com/glest/glest-source.git
synced 2025-08-12 03:14:00 +02:00
- bugfix for custom data path
This commit is contained in:
@@ -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);
|
||||
|
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user