From: Ryan C. Gordon Date: Fri, 14 May 2010 03:30:32 +0000 (-0400) Subject: Fixed printf() formatting string. X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=a73463888cc72d596e8afc63c6f0ce5731d5a27e;p=lugaru.git Fixed printf() formatting string. --- diff --git a/Source/GameDraw.cpp b/Source/GameDraw.cpp index 015a4d5..38d27d4 100644 --- a/Source/GameDraw.cpp +++ b/Source/GameDraw.cpp @@ -2506,7 +2506,7 @@ int Game::DrawGLScene(void) movex[10]=0; movey[10]=0; - sprintf (menustring[11], "Volume: %d%", (int)(volume*100)); + sprintf (menustring[11], "Volume: %d%%", (int)(volume*100)); startx[11]=10+60; starty[11]=155; endx[11]=startx[11]+strlen(menustring[11])*10;