mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
zap some FIXMEs
This commit is contained in:
parent
9c79651d43
commit
141df55965
2 changed files with 0 additions and 9 deletions
|
@ -131,14 +131,6 @@ Cmd_Command (cbuf_args_t *args)
|
||||||
// check cvars
|
// check cvars
|
||||||
if (Cvar_Command ())
|
if (Cvar_Command ())
|
||||||
return;
|
return;
|
||||||
#if 0 //FIXME
|
|
||||||
// Check for assignment
|
|
||||||
if (Cmd_Argc () == 3 && !strcmp (Cmd_Argv (1), "=")) {
|
|
||||||
Cmd_SetLocal (cmd_activebuffer, Cmd_Argv (0), Cmd_Argv (2));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// check alias
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (cmd_warncmd->int_val || developer->int_val)
|
if (cmd_warncmd->int_val || developer->int_val)
|
||||||
Sys_Printf ("Unknown command \"%s\"\n", Cmd_Argv (0));
|
Sys_Printf ("Unknown command \"%s\"\n", Cmd_Argv (0));
|
||||||
|
|
|
@ -376,7 +376,6 @@ contains_updir (const char *filename)
|
||||||
if (filename[0] == 0 || filename [1] == 0)
|
if (filename[0] == 0 || filename [1] == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
// FIXME: maybe I should handle alternate seperators?
|
|
||||||
for (i = 0; filename[i+1]; i++) {
|
for (i = 0; filename[i+1]; i++) {
|
||||||
if (!(i == 0 || filename[i-1] == '/') // beginning of string
|
if (!(i == 0 || filename[i-1] == '/') // beginning of string
|
||||||
// or first slash
|
// or first slash
|
||||||
|
|
Loading…
Reference in a new issue