From 69b1d97c0348229bf1ff14a672d7e50aa3d9eb3f Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 4 Nov 2007 22:47:34 +0000 Subject: (svn r11382) -Codechange: renamed COUNTBITS to CountBits, as it is no longer a macro (skidd13) --- src/vehicle_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vehicle_gui.cpp') diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index 2f35c9da1..6d0f0f85f 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -485,7 +485,7 @@ uint ShowRefitOptionsList(int x, int y, uint w, EngineID engine) char *b = _userstring; /* Draw nothing if the engine is not refittable */ - if (COUNTBITS(cmask) <= 1) return 0; + if (CountBits(cmask) <= 1) return 0; b = InlineString(b, STR_PURCHASE_INFO_REFITTABLE_TO); @@ -495,7 +495,7 @@ uint ShowRefitOptionsList(int x, int y, uint w, EngineID engine) } else { /* Check if we are able to refit to more cargo types and unable to. If * so, invert the cargo types to list those that we can't refit to. */ - if (COUNTBITS(cmask ^ lmask) < COUNTBITS(cmask)) { + if (CountBits(cmask ^ lmask) < CountBits(cmask)) { cmask ^= lmask; b = InlineString(b, STR_PURCHASE_INFO_ALL_BUT); } -- cgit v1.2.3-54-g00ecf