(svn r12751) -Codechange: do what has been done in r11862 in a different way so it uses less memory.

This commit is contained in:
rubidium
2008-04-17 11:47:22 +00:00
parent 5796fb3b34
commit 00f0bf98ee
8 changed files with 52 additions and 106 deletions

View File

@@ -7,7 +7,7 @@
#include "cargo_type.h"
#include "gfx_type.h"
#include "newgrf_string_type.h"
#include "strings_type.h"
typedef uint32 CargoLabel;
@@ -36,11 +36,11 @@ struct CargoSpec {
uint16 multipliertowngrowth;
uint8 callback_mask;
GRFMappedStringID name;
GRFMappedStringID name_single;
GRFMappedStringID units_volume;
GRFMappedStringID quantifier;
GRFMappedStringID abbrev;
StringID name;
StringID name_single;
StringID units_volume;
StringID quantifier;
StringID abbrev;
SpriteID sprite;