Skip to content

Commit

Permalink
xrEngine: fix executing case-sensitive cmd arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Oct 5, 2018
1 parent 301e2e4 commit b2931c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/xr_ioc_cmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ENGINE_API IConsole_Command

IC bool EQ(LPCSTR S1, LPCSTR S2) { return xr_strcmp(S1, S2) == 0; }
public:
IConsole_Command(LPCSTR N BENCH_SEC_SIGN) : cName(N), bEnabled(TRUE), bLowerCaseArgs(TRUE), bEmptyArgsHandled(FALSE)
IConsole_Command(LPCSTR N BENCH_SEC_SIGN) : cName(N), bEnabled(TRUE), bLowerCaseArgs(FALSE), bEmptyArgsHandled(FALSE)
{
m_LRU.reserve(LRU_MAX_COUNT + 1);
m_LRU.clear();
Expand Down

0 comments on commit b2931c3

Please sign in to comment.