about summary refs log tree commit diff stats
path: root/src/title.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/title.c')
-rw-r--r--src/title.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/title.c b/src/title.c
index f909a9e..5a5fecc 100644
--- a/src/title.c
+++ b/src/title.c
@@ -147,16 +147,16 @@ static void score_screen(Camera2D *MainCamera) {
             ClearBackground(BLACK);
             BeginMode2D(*MainCamera);
             DrawRectangle(0, 0, 1280, 720, (Color){20, 20, 20, 255});
-			/* Scores */
-			int a = 0;
-			int i = 0;
-            for (i = 1+(10*Page); i <= 10+(10*Page); i++, a++) {
+		/* Scores */
+		int a = 0;
+		int i = 0;
+            	for (i = 1+(10*Page); i <= 10+(10*Page); i++, a++) {
 	            if(Scores[i-1]->Name[0] != ' ') {
-            	    DrawText(TextFormat("%d. %s: %d", i, Scores[i-1]->Name, Scores[i-1]->Score), 460, 60+(50*a), 48, WHITE);
-                } else {
-                	EndOfPages = true;
-                }
-            }
+            	    	DrawText(TextFormat("%d. %s: %d", i, Scores[i-1]->Name, Scores[i-1]->Score), 460, 60+(50*a), 48, WHITE);
+                	} else {
+                		EndOfPages = true;
+                	}
+            	}
 		/* Page Buttons */
 		if(CheckCollisionRecs(MouseCursor, PrevPage) && Page > 0) {
 			DrawRectangleRec(PrevPage, RED);