Changeset - r16662:9972c29ce194
[Not reviewed]
master
0 1 0
rubidium - 13 years ago 2010-12-05 22:17:25
rubidium@openttd.org
(svn r21403) -Change: the maximum size of the string argument of a command
1 file changed with 6 insertions and 6 deletions:
0 comments (0 inline, 0 general)
src/command_type.h
Show inline comments
 
@@ -382,12 +382,12 @@ typedef void CommandCallback(const Comma
 
 * Structure for buffering the build command when selecting a station to join.
 
 */
 
struct CommandContainer {
 
	TileIndex tile;            ///< tile command being executed on
 
	uint32 p1;                 ///< parameter p1
 
	uint32 p2;                 ///< parameter p2
 
	uint32 cmd;                ///< command being executed
 
	CommandCallback *callback; ///< any callback function executed upon successful completion of the command
 
	char text[80];             ///< possible text sent for name changes etc
 
	TileIndex tile;                  ///< tile command being executed on.
 
	uint32 p1;                       ///< parameter p1.
 
	uint32 p2;                       ///< parameter p2.
 
	uint32 cmd;                      ///< command being executed.
 
	CommandCallback *callback;       ///< any callback function executed upon successful completion of the command.
 
	char text[32 * MAX_CHAR_LENGTH]; ///< possible text sent for name changes etc, in bytes including '\0'.
 
};
 

	
 
#endif /* COMMAND_TYPE_H */
0 comments (0 inline, 0 general)