diff src/newgrf_engine.cpp @ 8556:8aae08d562cc draft

(svn r12134) -Change: count the number of ticks a vehicle was running this day to calculate running cost -Fix [FS#1739]: vehicle profit is now counted with 8bit fract, so it is now shown properly in the vehicle details window
author smatz <smatz@openttd.org>
date Wed, 13 Feb 2008 19:24:40 +0000 (2008-02-13)
parents 6017c5ebeb7e
children 8d23ba9f619f
line wrap: on
line diff
--- a/src/newgrf_engine.cpp
+++ b/src/newgrf_engine.cpp
@@ -694,14 +694,14 @@
 		case 0x4F: return GB(v->reliability, 8, 8);
 		case 0x50: return v->reliability_spd_dec;
 		case 0x51: return GB(v->reliability_spd_dec, 8, 8);
-		case 0x52: return ClampToI32(v->profit_this_year);
-		case 0x53: return GB(ClampToI32(v->profit_this_year),  8, 24);
-		case 0x54: return GB(ClampToI32(v->profit_this_year), 16, 16);
-		case 0x55: return GB(ClampToI32(v->profit_this_year), 24,  8);
-		case 0x56: return ClampToI32(v->profit_last_year);
-		case 0x57: return GB(ClampToI32(v->profit_last_year),  8, 24);
-		case 0x58: return GB(ClampToI32(v->profit_last_year), 16, 16);
-		case 0x59: return GB(ClampToI32(v->profit_last_year), 24,  8);
+		case 0x52: return ClampToI32(v->profit_this_year >> 8);
+		case 0x53: return GB(ClampToI32(v->profit_this_year >> 8),  8, 24);
+		case 0x54: return GB(ClampToI32(v->profit_this_year >> 8), 16, 16);
+		case 0x55: return GB(ClampToI32(v->profit_this_year >> 8), 24,  8);
+		case 0x56: return ClampToI32(v->profit_last_year >> 8);
+		case 0x57: return GB(ClampToI32(v->profit_last_year >> 8),  8, 24);
+		case 0x58: return GB(ClampToI32(v->profit_last_year >> 8), 16, 16);
+		case 0x59: return GB(ClampToI32(v->profit_last_year >> 8), 24,  8);
 		case 0x5A: return v->Next() == NULL ? INVALID_VEHICLE : v->Next()->index;
 		case 0x5C: return ClampToI32(v->value);
 		case 0x5D: return GB(ClampToI32(v->value),  8, 24);