mirror of
https://github.com/SWG-Source/client-tools.git
synced 2026-01-16 23:04:27 -05:00
disable video capture
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -3,6 +3,8 @@ src/external/3rd/library/dpvs/implementation/msvc8/release/
|
||||
*.sdf
|
||||
*.suo
|
||||
*.aps
|
||||
*/*.obj
|
||||
*.log
|
||||
*.vcxproj.user
|
||||
dpvs.lib
|
||||
*.lib
|
||||
|
||||
@@ -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, "<resolution (1-21)> <max seconds> <quality (1-100)> <filename>", "Configure video capture"},
|
||||
/*{ms_videoCaptureConfig, 4, "<resolution (1-21)> <max seconds> <quality (1-100)> <filename>", "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, "<value (like 1.5)>", "/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();
|
||||
|
||||
Reference in New Issue
Block a user