From 298947364dd475b913f49939fad00490bf8d50f2 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sun, 29 Oct 2017 14:02:30 -0700 Subject: [PATCH] disable video capture --- .gitignore | 2 ++ .../src/shared/parser/SwgCuiCommandParserScene.cpp | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 03dc192d8..6ca70b446 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ src/external/3rd/library/dpvs/implementation/msvc8/release/ *.sdf *.suo *.aps +*/*.obj +*.log *.vcxproj.user dpvs.lib *.lib diff --git a/src/game/client/library/swgClientUserInterface/src/shared/parser/SwgCuiCommandParserScene.cpp b/src/game/client/library/swgClientUserInterface/src/shared/parser/SwgCuiCommandParserScene.cpp index 10be43269..cce87ee2b 100644 --- a/src/game/client/library/swgClientUserInterface/src/shared/parser/SwgCuiCommandParserScene.cpp +++ b/src/game/client/library/swgClientUserInterface/src/shared/parser/SwgCuiCommandParserScene.cpp @@ -262,7 +262,7 @@ namespace const char * const ms_listGcwRegionsData = "listGcwRegionsData"; const char * const ms_listGcwGroupsData = "listGcwGroupsData"; -#if PRODUCTION == 0 +#if 0 const char * const ms_videoCaptureConfig = "videoCaptureConfig"; const char * const ms_videoCaptureStart = "videoCaptureStart"; const char * const ms_videoCaptureStop = "videoCaptureStop"; @@ -533,9 +533,9 @@ static const CommandParser::CmdInfo cmds[] = {ms_listLfgData, 0, "", "List all possible LFG search criteria"}, {ms_listGcwRegionsData, 0, "", "List the GCW score categories region data"}, {ms_listGcwGroupsData, 0, "", "List the GCW score categories group data"}, - {ms_videoCaptureConfig, 4, " ", "Configure video capture"}, + /*{ms_videoCaptureConfig, 4, " ", "Configure video capture"}, {ms_videoCaptureStart, 0, "", "Start video capture"}, - {ms_videoCaptureStop, 0, "", "Stop video capture"}, + {ms_videoCaptureStop, 0, "", "Stop video capture"},*/ #endif // PRODUCTION #ifdef _DEBUG {"setMovementPercent", 1, "", "/setSpeed client side only"}, @@ -4892,7 +4892,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV //----------------------------------------------------------------- -#if PRODUCTION == 0 +#if 0 else if (isCommand (argv [0], ms_videoCaptureConfig)) { if(5 <= argv.size()) @@ -4909,7 +4909,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV //----------------------------------------------------------------- -#if PRODUCTION == 0 +#if 0 else if (isCommand (argv [0], ms_videoCaptureStart)) { Game::videoCaptureStart(); @@ -4918,7 +4918,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV //----------------------------------------------------------------- -#if PRODUCTION == 0 +#if 0 else if (isCommand (argv [0], ms_videoCaptureStop)) { Game::videoCaptureStop();