diff --git a/src/libs/tgfclient/glfeatures.h b/src/libs/tgfclient/glfeatures.h index b65a3793a..eeb4e2109 100644 --- a/src/libs/tgfclient/glfeatures.h +++ b/src/libs/tgfclient/glfeatures.h @@ -130,10 +130,10 @@ class TGFCLIENT_API GfglFeatures // Update supported OpenGL features according to the given frame buffer specs. bool detectBestSupport(int& nWidth, int& nHeight, int& nDepth, - bool& bAlpha, bool& bBump, bool& bStereo, bool& bFullScreen, int& nAniFilt); + bool& bAlpha, bool& bFullScreen, bool& bBump, bool& bStereo, int& nAniFilt); #if SDL_MAJOR_VERSION >= 2 bool detectBestSupportSDL2(int& nWidth, int& nHeight, int& nDepth, - bool& bAlpha, bool& bBump, bool& bStereo, bool& bFullScreen, int& nAniFilt); + bool& bAlpha, bool& bFullScreen, bool& bBump, bool& bStereo, int& nAniFilt); #endif bool loadSupport(int &nWidth, int &nHeight, int &nDepth, diff --git a/src/libs/tgfclient/guimenu.cpp b/src/libs/tgfclient/guimenu.cpp index c15dffaac..703a8de07 100644 --- a/src/libs/tgfclient/guimenu.cpp +++ b/src/libs/tgfclient/guimenu.cpp @@ -1103,7 +1103,7 @@ int GfuiMenuScreen::createTextButtonControl(const char* pszName, void* userDataO void* userDataOnFocus, tfuiCallback onFocus, tfuiCallback onFocusLost, bool bFromTemplate, - const char* tip, const char* text, + const char* text, const char* tip, int x, int y, int width, int font, int textHAlign, const float* fgColor, const float* fgFocusColor, const float* fgPushedColor) {