mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-02 03:51:16 +00:00
Change to const char, rename to p_execName
This commit is contained in:
parent
7c6db1640a
commit
2783664a9f
@ -1404,9 +1404,9 @@ SDL_AppResult IsleApp::ParseArguments(int argc, char** argv)
|
|||||||
return SDL_APP_CONTINUE;
|
return SDL_APP_CONTINUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IsleApp::DisplayArgumentHelp(char* execName)
|
void IsleApp::DisplayArgumentHelp(const char* p_execName)
|
||||||
{
|
{
|
||||||
SDL_Log("Usage: %s [options]", execName);
|
SDL_Log("Usage: %s [options]", p_execName);
|
||||||
SDL_Log("Options:");
|
SDL_Log("Options:");
|
||||||
SDL_Log(" --ini <path> Set custom path to .ini config");
|
SDL_Log(" --ini <path> Set custom path to .ini config");
|
||||||
#ifdef ISLE_DEBUG
|
#ifdef ISLE_DEBUG
|
||||||
|
|||||||
@ -99,7 +99,7 @@ class IsleApp {
|
|||||||
const CursorBitmap* m_cursorCurrentBitmap;
|
const CursorBitmap* m_cursorCurrentBitmap;
|
||||||
char* m_mediaPath;
|
char* m_mediaPath;
|
||||||
MxFloat m_cursorSensitivity;
|
MxFloat m_cursorSensitivity;
|
||||||
void DisplayArgumentHelp(char* execName);
|
void DisplayArgumentHelp(const char* p_execName);
|
||||||
|
|
||||||
char* m_iniPath;
|
char* m_iniPath;
|
||||||
MxFloat m_maxLod;
|
MxFloat m_maxLod;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user