I got it to work. But also found another way I think is much cleaner than what I was trying to do.
std::stringstream fmt;
fmt << "your score is"<<score;
ofDrawBitmapString(fmt.str(), 100, 100);
I got it to work. But also found another way I think is much cleaner than what I was trying to do.
std::stringstream fmt;
fmt << "your score is"<<score;
ofDrawBitmapString(fmt.str(), 100, 100);