Fix naming inconsistency
authorparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Fri, 25 Feb 2011 15:27:38 +0000 (15:27 +0000)
committerparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Fri, 25 Feb 2011 15:27:38 +0000 (15:27 +0000)
Arguably an improvement, but hey.

git-svn-id: https://s.snth.net/svn/neverball/trunk@3511 78b8d119-cf0a-0410-b17c-f493084dd1d7

share/solid_base.c

index 721399a..cecece3 100644 (file)
@@ -208,10 +208,10 @@ static void sol_load_jump(fs_file fin, struct b_jump *jp)
     get_float(fin, &jp->r);
 }
 
-static void sol_load_ball(fs_file fin, struct b_ball *bp)
+static void sol_load_ball(fs_file fin, struct b_ball *up)
 {
-    get_array(fin,  bp->p, 3);
-    get_float(fin, &bp->r);
+    get_array(fin,  up->p, 3);
+    get_float(fin, &up->r);
 }
 
 static void sol_load_view(fs_file fin, struct b_view *wp)