mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-07 23:10:04 +00:00
(svn r13043) -Codechange: remove some duplicate variables from news_d.
This commit is contained in:
parent
eb2d47b547
commit
9066a961e7
@ -37,24 +37,6 @@
|
|||||||
#define BGC 5
|
#define BGC 5
|
||||||
#define BTC 15
|
#define BTC 15
|
||||||
|
|
||||||
/*
|
|
||||||
struct network_d {
|
|
||||||
byte field; // select text-field in start-server and game-listing
|
|
||||||
byte widget_id; ///< The widget that has the pop-up input menu
|
|
||||||
byte field; // select text-field in start-server and game-listing
|
|
||||||
NetworkGameList *server; // selected server in lobby and game-listing
|
|
||||||
FiosItem *map; // selected map in start-server
|
|
||||||
};
|
|
||||||
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(network_d));
|
|
||||||
|
|
||||||
struct network_ql_d {
|
|
||||||
network_d n; // see above; general stuff
|
|
||||||
querystr_d q; // text-input in start-server and game-listing
|
|
||||||
list_d l; // accompanying list-administration
|
|
||||||
};
|
|
||||||
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(network_ql_d));
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Global to remember sorting after window has been closed */
|
/* Global to remember sorting after window has been closed */
|
||||||
static Listing _ng_sorting;
|
static Listing _ng_sorting;
|
||||||
|
|
||||||
|
@ -61,12 +61,7 @@ static NewsID _oldest_news = 0; ///< points to first item in fifo qu
|
|||||||
static NewsID _latest_news = INVALID_NEWS; ///< points to last item in fifo queue
|
static NewsID _latest_news = INVALID_NEWS; ///< points to last item in fifo queue
|
||||||
|
|
||||||
struct news_d : vp_d {
|
struct news_d : vp_d {
|
||||||
uint16 follow_vehicle;
|
|
||||||
uint16 chat_height;
|
uint16 chat_height;
|
||||||
int32 scrollpos_x;
|
|
||||||
int32 scrollpos_y;
|
|
||||||
int32 dest_scrollpos_x;
|
|
||||||
int32 dest_scrollpos_y;
|
|
||||||
NewsItem *ni;
|
NewsItem *ni;
|
||||||
};
|
};
|
||||||
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(news_d));
|
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(news_d));
|
||||||
|
Loading…
Reference in New Issue
Block a user