Changeset - r1318:7c54e45c2a7b
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-02-06 14:27:50
tron@openttd.org
(svn r1822) Const correctness
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
strings.c
Show inline comments
 
@@ -127,7 +127,7 @@ static char *str_cat(char *dst, const ch
 
	return dst - 1;
 
}
 

	
 
static char *GetStringPtr(uint16 string)
 
static const char *GetStringPtr(uint16 string)
 
{
 
	return _langpack_offs[_langtab_start[string >> 11] + (string & 0x7FF)];
 
}
 
@@ -452,7 +452,7 @@ static char *DecodeString(char *buff, co
 
				// Short description of cargotypes. Layout:
 
				// 8-bit = cargo type
 
				// 16-bit = cargo count
 
				char *s;
 
				const char *s;
 
				uint16 cargo_str = _cargo_string_list[_opt.landscape][(byte)GetParamInt8()];
 
				uint16 multiplier = (cargo_str == STR_LITERS) ? 1000 : 1;
 
				// liquid type of cargo is multiplied by 100 to get correct amount
 
@@ -477,7 +477,7 @@ static char *DecodeString(char *buff, co
 
			//assert(0);
 
			break;
 
		case 0x87: { // {VOLUME}
 
			char *s;
 
			const char *s;
 
			buff = FormatCommaNumber(buff, GetParamInt16() * 1000);
 
			memcpy(buff++, " ", 1);
 
			s = GetStringPtr(STR_LITERS);
0 comments (0 inline, 0 general)