Browse Source

Updated script for presentation

main
Cailean 4 weeks ago
parent
commit
dcf55c4c25
  1. 2562
      bin/data/text/preprocess_presentation.json
  2. 2
      src/ofTeleprompter.cpp
  3. 2
      src/ofTeleprompter.h

2562
bin/data/text/preprocess_presentation.json

File diff suppressed because it is too large

2
src/ofTeleprompter.cpp

@ -227,7 +227,7 @@ void ofTeleprompter::nextLinePressed() {
ofLog() << "Next Line!";
if (currentLine < (*activeScript).size()) {
if (currentLine <= (*activeScript).size()) {
currentLine++;
}

2
src/ofTeleprompter.h

@ -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";

Loading…
Cancel
Save