fix function argument name order difference found by cppcheck

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7029 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e5665bd7877e23b8c0625e6649efa343d19012e6
Former-commit-id: 71defb387c1d3ce90d3fdb3df9a98fb088b87404
This commit is contained in:
iobyte 2020-05-08 18:09:14 +00:00
parent 581e9c5ed9
commit 55ba28ea3d
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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)
{