Well, for one thing, that is not how you combine (that is, concatenate) strings.
You probably want something like this:
Code: Select all
lives->setText("Lives: " + StringConverter::toString(numLives));
Hope that helps!
Kevin
Code: Select all
lives->setText("Lives: " + StringConverter::toString(numLives));