@ -227,7 +227,7 @@ void ofTeleprompter::nextLinePressed() {
ofLog() << "Next Line!";
if (currentLine < (*activeScript).size()) {
if (currentLine <= (*activeScript).size()) {
currentLine++;
}
@ -55,7 +55,7 @@ class ofTeleprompter: public ofBaseApp{
/* script */
std::vector<Line> script;
std::vector<Line> scriptContemporary;
std::string filePath = "text/preprocess_original.json";
std::string filePath = "text/preprocess_presentation.json";
std::string filePathContemp = "text/preprocess_contemporary.json";
int currentLine = 0;
std::string currentLineString = "N/A";