diff --git a/stepmania/PBProject/Installer/Processor.cpp b/stepmania/PBProject/Installer/Processor.cpp index 69c5733f2a..268830291c 100644 --- a/stepmania/PBProject/Installer/Processor.cpp +++ b/stepmania/PBProject/Installer/Processor.cpp @@ -186,7 +186,7 @@ void Processor::ProcessLine(const CString& line, unsigned& nextLine) mLabel = parts[1]; if (mLabels.find(mLabel) != mLabels.end()) { - mReturnStack.push(nextLine + 1); + mReturnStack.push(nextLine); nextLine = mLabels[mLabel]; mLabel = ""; return; @@ -209,7 +209,7 @@ void Processor::ProcessLine(const CString& line, unsigned& nextLine) { return; } - mReturnStack.push(nextLine + 1); + mReturnStack.push(nextLine); if (mLabels.find(mLabel) != mLabels.end()) { nextLine = mLabels[mLabel];