mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-23 21:50:23 +01:00
(svn r249) -Fix: warning fix in console.c/h (Tron)
This commit is contained in:
parent
d48ce392b2
commit
3562d814fb
@ -768,7 +768,7 @@ bool IConsoleCmdHookHandle(_iconsole_cmd * hook_cmd, byte type)
|
|||||||
return proc(hook_cmd);
|
return proc(hook_cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IConsoleCmdExec(byte * cmdstr)
|
void IConsoleCmdExec(const byte* cmdstr)
|
||||||
{
|
{
|
||||||
_iconsole_var * (*function)(byte argc, byte* argv[], byte argt[]);
|
_iconsole_var * (*function)(byte argc, byte* argv[], byte argt[]);
|
||||||
byte * tokens[20];
|
byte * tokens[20];
|
||||||
@ -799,7 +799,7 @@ void IConsoleCmdExec(byte * cmdstr)
|
|||||||
longtoken=false;
|
longtoken=false;
|
||||||
valid_token=false;
|
valid_token=false;
|
||||||
skip_lt_change=false;
|
skip_lt_change=false;
|
||||||
l=strlen((char *) cmdstr);
|
l=strlen(cmdstr);
|
||||||
i=0;
|
i=0;
|
||||||
c=0;
|
c=0;
|
||||||
tokens[c] = tokenstream;
|
tokens[c] = tokenstream;
|
||||||
|
@ -115,7 +115,7 @@ void IConsoleVarDump(_iconsole_var * var, const byte * dump_desc);
|
|||||||
|
|
||||||
// *** Parser *** //
|
// *** Parser *** //
|
||||||
|
|
||||||
void IConsoleCmdExec(byte * cmdstr);
|
void IConsoleCmdExec(const byte* cmdstr);
|
||||||
|
|
||||||
// ** console std lib ** //
|
// ** console std lib ** //
|
||||||
void IConsoleStdLibRegister();
|
void IConsoleStdLibRegister();
|
||||||
|
Loading…
Reference in New Issue
Block a user