writing text

Hi I am trying to put text up on the screen. I have looked a the gamedev.nehe site and it doesn’t help as I am rotating the camrea at the same time so the text doesn’t stay in the same place any surgesstions?

Call glLoadIdentity before drawing text for example if you’re writing the text in your normal projection. Otherwise you can setup an ortographic projection with glOrtho2D before writing the text (Easy to do pixel accuracy then).

thanx alot,
I will try that