comment out some unused vars

This commit is contained in:
DarthArgus
2016-01-31 12:42:40 -06:00
parent d7c2ee9382
commit 9eb245957e
3 changed files with 7 additions and 7 deletions
@@ -986,7 +986,7 @@ void ConnectionServer::run(void)
{
PROFILER_AUTO_BLOCK_DEFINE("main loop");
bool barrierReached = true;
//bool barrierReached = true;
do
{
@@ -167,13 +167,13 @@ int CreatureObjectNamespace::getSaddleSeatingCapacity(CreatureObject const * con
// default to 1 seat...
int saddleSeatingCapacity = 1;
{
/*{
ServerObject const * const serverObject = mount->asServerObject();
//SharedObjectTemplate const * const sharedObjectTemplate = serverObject->getSharedTemplate();
SharedObjectTemplate const * const sharedObjectTemplate = serverObject->getSharedTemplate();
//std::string const appearanceFilename = (sharedObjectTemplate != 0) ? sharedObjectTemplate->getAppearanceFilename() : "None";
//DEBUG_REPORT_LOG(true, ("sharedObjectTemplate appearanceFilename = '%s'\n", appearanceFilename.c_str()));
}
std::string const appearanceFilename = (sharedObjectTemplate != 0) ? sharedObjectTemplate->getAppearanceFilename() : "None";
DEBUG_REPORT_LOG(true, ("sharedObjectTemplate appearanceFilename = '%s'\n", appearanceFilename.c_str()));
}*/
CrcString const * const logicalSaddleName = getLogicalSaddleNameForMount(mount);
@@ -134,7 +134,7 @@ void WorldSnapshotParser::createWorldSnapshots (const char* const filename)
*/
//-- scan each line of the file
bool quit = false;
//bool quit = false;
while (fgets (buffer, 1024, infile) != 0)
{
const char* current = buffer;