mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
- reactivated the binding reladed CCMDs.
This commit is contained in:
parent
8d089a11fa
commit
189ce21acf
2 changed files with 6 additions and 6 deletions
|
@ -534,7 +534,6 @@ void C_UnbindAll ()
|
|||
AutomapBindings.UnbindAll();
|
||||
}
|
||||
|
||||
#if 0
|
||||
CCMD (unbindall)
|
||||
{
|
||||
C_UnbindAll ();
|
||||
|
@ -643,7 +642,6 @@ CCMD(rebind)
|
|||
bindings->SetBind(key, argv[1]);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
//=============================================================================
|
||||
//
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include "gameconfigfile.h"
|
||||
#include "c_cvars.h"
|
||||
//#include "c_dispatch.h"
|
||||
#include "c_dispatch.h"
|
||||
#include "c_bind.h"
|
||||
#include "m_argv.h"
|
||||
#include "cmdlib.h"
|
||||
|
@ -52,6 +52,10 @@
|
|||
#include "gamecontrol.h"
|
||||
#include "version.h"
|
||||
|
||||
#ifdef Printf
|
||||
#undef Printf
|
||||
#endif
|
||||
|
||||
#define LASTRUNVERSION "1"
|
||||
|
||||
#if !defined _MSC_VER && !defined __APPLE__
|
||||
|
@ -522,13 +526,11 @@ void FGameConfigFile::AddAutoexec (FArgs *list, const char *game)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
CCMD (whereisini)
|
||||
{
|
||||
FString path = M_GetConfigPath(false);
|
||||
Printf ("%s\n", path.GetChars());
|
||||
OSD_Printf ("%s\n", path.GetChars());
|
||||
}
|
||||
*/
|
||||
|
||||
FGameConfigFile* GameConfig;
|
||||
static FString GameName;
|
||||
|
|
Loading…
Reference in a new issue