(svn r1512) Replace probably incorrect test of loading_count with probably correct test of loaded_count
authortron
Fri, 14 Jan 2005 21:58:48 +0000
changeset 1012 bdb66f548899
parent 1011 2587838541bf
child 1013 8080f9db9057
(svn r1512) Replace probably incorrect test of loading_count with probably correct test of loaded_count
station_cmd.c
--- a/station_cmd.c	Fri Jan 14 21:47:35 2005 +0000
+++ b/station_cmd.c	Fri Jan 14 21:58:48 2005 +0000
@@ -1154,7 +1154,7 @@
 	if (rsg->sprites_per_set != 0) {
 		if (rsg->loading_count != 0) {
 			return rsg->loading[0];
-		} else if (rsg->loading_count != 0) {
+		} else if (rsg->loaded_count != 0) {
 			return rsg->loaded[0];
 		}
 	}