Changeset - r2634:a3ccca486bdf
[Not reviewed]
master
0 7 0
tron - 19 years ago 2005-11-13 21:16:34
tron@openttd.org
(svn r3176) Use proper types, not some variants of int
7 files changed with 13 insertions and 11 deletions:
0 comments (0 inline, 0 general)
gfx.c
Show inline comments
 
@@ -430,7 +430,7 @@ static uint32 FormatStringLinebreaks(cha
 
	}
 
}
 

	
 
void DrawStringMultiCenter(int x, int y, uint16 str, int maxw)
 
void DrawStringMultiCenter(int x, int y, StringID str, int maxw)
 
{
 
	char buffer[512];
 
	uint32 tmp;
 
@@ -476,7 +476,7 @@ void DrawStringMultiCenter(int x, int y,
 
	}
 
}
 

	
 
void DrawStringMultiLine(int x, int y, uint16 str, int maxw)
 
void DrawStringMultiLine(int x, int y, StringID str, int maxw)
 
{
 
	char buffer[512];
 
	uint32 tmp;
gfx.h
Show inline comments
 
@@ -68,8 +68,8 @@ uint16 GetDrawStringPlayerColor(PlayerID
 

	
 
int GetStringWidth(const char *str);
 
void LoadStringWidthTable(void);
 
void DrawStringMultiCenter(int x, int y, uint16 str, int maxw);
 
void DrawStringMultiLine(int x, int y, uint16 str, int maxw);
 
void DrawStringMultiCenter(int x, int y, StringID str, int maxw);
 
void DrawStringMultiLine(int x, int y, StringID str, int maxw);
 
void DrawDirtyBlocks(void);
 
void SetDirtyBlocks(int left, int top, int right, int bottom);
 
void MarkWholeScreenDirty(void);
openttd.c
Show inline comments
 
@@ -789,9 +789,9 @@ void SwitchMode(int new_mode)
 
	}
 

	
 
	case SM_LOAD_SCENARIO: { /* Load scenario from scenario editor */
 
		int i;
 
		if (SafeSaveOrLoad(_file_to_saveload.name, _file_to_saveload.mode, GM_EDITOR)) {
 
			PlayerID i;
 

	
 
		if (SafeSaveOrLoad(_file_to_saveload.name, _file_to_saveload.mode, GM_EDITOR)) {
 
			_opt_ptr = &_opt;
 

	
 
			_local_player = OWNER_NONE;
 
@@ -1283,8 +1283,9 @@ bool AfterLoadGame(uint version)
 
	}
 

	
 
	if (version < 0x1000) {
 
		int i;
 
		FOR_ALL_PLAYERS(p) {
 
			EngineID i;
 

	
 
			for (i = 0; i < TOTAL_NUM_ENGINES; i++) {
 
				p->engine_replacement[i] = INVALID_ENGINE;
 
			}
players.c
Show inline comments
 
@@ -619,7 +619,7 @@ void DeletePlayerWindows(PlayerID pi)
 
byte GetPlayerRailtypes(PlayerID p)
 
{
 
	byte rt = 0;
 
	uint i;
 
	EngineID i;
 

	
 
	for (i = 0; i != TOTAL_NUM_ENGINES; i++) {
 
		const Engine* e = GetEngine(i);
train_cmd.c
Show inline comments
 
@@ -1958,7 +1958,8 @@ static bool CheckTrainStayInDepot(Vehicl
 
			return false;
 

	
 
	if (v->u.rail.force_proceed == 0) {
 
		byte trackdir = GetVehicleTrackdir(v);
 
		Trackdir trackdir = GetVehicleTrackdir(v);
 

	
 
		if (++v->load_unload_time_rem < 37) {
 
			InvalidateWindowClasses(WC_TRAINS_LIST);
 
			return true;
vehicle.h
Show inline comments
 
@@ -240,7 +240,7 @@ struct Vehicle {
 
	int32 top_coord;
 
	int32 right_coord;
 
	int32 bottom_coord;
 
	uint16 next_hash;
 
	VehicleID next_hash;
 

	
 
	// Related to age and service time
 
	uint16 age;				// Age in days
window.h
Show inline comments
 
@@ -56,7 +56,7 @@ typedef struct Widget {
 
	byte color;
 
	uint16 left, right, top, bottom;
 
	uint16 unkA;
 
	uint16 tooltips;
 
	StringID tooltips;
 
} Widget;
 

	
 
enum FrameFlags {
0 comments (0 inline, 0 general)