//Save total amount gone to the right in this line
thisLineTotalXAdvancement += lastXAdvancement;
lastXAdvancement = 0;
//Draw the letter
character.drawComponent(gl);
//Check if newLine occurs, goto start at new line
if (character.getUnicode().equals("\n")){
gl.glTranslatef(-thisLineTotalXAdvancement, fontHeight, 0);
thisLineTotalXAdvancement = 0;