(svn r18329) -Remove: [strgen] Support for {SETX} and {SETXY}. Let it rest in peace as NewGRF relict.

This commit is contained in:
frosch
2009-11-28 20:27:42 +00:00
parent ae97bf029c
commit bf0b72ae9e
2 changed files with 1 additions and 35 deletions

View File

@@ -28,17 +28,11 @@ struct CmdStruct {
CmdFlags flags;
};
static void EmitSetX(char *buf, int value);
static void EmitSetXY(char *buf, int value);
static void EmitSingleChar(char *buf, int value);
static void EmitPlural(char *buf, int value);
static void EmitGender(char *buf, int value);
static const CmdStruct _cmd_structs[] = {
/* Update position */
{"SETX", EmitSetX, SCC_SETX, 0, C_NONE},
{"SETXY", EmitSetXY, SCC_SETXY, 0, C_NONE},
/* Font size */
{"TINYFONT", EmitSingleChar, SCC_TINYFONT, 0, C_NONE},
{"BIGFONT", EmitSingleChar, SCC_BIGFONT, 0, C_NONE},