Changed the default settings to fix a jump problems

This commit is contained in:
Robert Osfield
2012-11-12 10:36:21 +00:00
parent e8b86dc4ec
commit e9a7b2a6e5

View File

@@ -41,7 +41,7 @@ enum Operation
struct JumpData
{
JumpData():
relativeJump(false),
relativeJump(true),
slideNum(0),
layerNum(0) {}
@@ -51,9 +51,9 @@ struct JumpData
layerNum(in_layerNum) {}
JumpData(const std::string& in_slideName, const std::string& in_layerName):
relativeJump(false),
slideNum(-1),
layerNum(-1),
relativeJump(true),
slideNum(0),
layerNum(0),
slideName(in_slideName),
layerName(in_layerName) {}