Changeset - r5430:f6f5c3583f22
[Not reviewed]
master
0 2 0
Darkvater - 17 years ago 2006-12-30 01:14:00
darkvater@openttd.org
(svn r7636) -Cleanup: Remove unused window classes (sorry WC-mess) and use sizeof(array) instead
of X * sizeof(array[0])
2 files changed with 1 insertions and 4 deletions:
0 comments (0 inline, 0 general)
newgrf.c
Show inline comments
 
@@ -3425,7 +3425,7 @@ static void InitNewGRFFile(const GRFConf
 
	/* Copy the initial parameter list */
 
	assert(lengthof(newfile->param) == lengthof(config->param) && lengthof(config->param) == 0x80);
 
	newfile->param_end = config->num_params;
 
	memcpy(newfile->param, config->param, 0x80 * sizeof(newfile->param[0]));
 
	memcpy(newfile->param, config->param, sizeof(newfile->param));
 

	
 
	if (_first_grffile == NULL) {
 
		_cur_grffile = newfile;
openttd.h
Show inline comments
 
@@ -387,8 +387,6 @@ enum {
 
	WC_BUILD_VEHICLE,
 
	WC_BUILD_BRIDGE,
 
	WC_ERRMSG,
 
	WC_ASK_ABANDON_GAME,
 
	WC_QUIT_GAME,
 
	WC_BUILD_STATION,
 
	WC_BUS_STATION,
 
	WC_TRUCK_STATION,
 
@@ -444,7 +442,6 @@ enum {
 
	WC_GENERATE_LANDSCAPE,
 
	WC_GENERATE_PROGRESS_WINDOW,
 
	WC_CONFIRM_POPUP_QUERY,
 
	WC_DEPOT_SELL_ALL,
 
};
 

	
 

	
0 comments (0 inline, 0 general)