From a73463888cc72d596e8afc63c6f0ce5731d5a27e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 13 May 2010 23:30:32 -0400 Subject: [PATCH] Fixed printf() formatting string. --- Source/GameDraw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2