Changeset - r9455:324f620ba8dd
[Not reviewed]
master
0 2 0
smatz - 16 years ago 2008-06-03 11:39:15
smatz@openttd.org
(svn r13373) -Fix (r10210): loading of very old savegames was broken
2 files changed with 12 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/saveload.cpp
Show inline comments
 
@@ -651,10 +651,18 @@ void SlArray(void *array, size_t length,
 
	/* NOTICE - handle some buggy stuff, in really old versions everything was saved
 
	 * as a byte-type. So detect this, and adjust array size accordingly */
 
	if (!_sl.save && _sl_version == 0) {
 
		/* all arrays except difficulty settings */
 
		if (conv == SLE_INT16 || conv == SLE_UINT16 || conv == SLE_STRINGID ||
 
				conv == SLE_INT32 || conv == SLE_UINT32) {
 
			length *= SlCalcConvFileLen(conv);
 
			conv = SLE_INT8;
 
			SlCopyBytes(array, length * SlCalcConvFileLen(conv));
 
			return;
 
		}
 
		/* used for conversion of Money 32bit->64bit */
 
		if (conv == (SLE_FILE_I32 | SLE_VAR_I64)) {
 
			for (uint i = 0; i < length; i++) {
 
				((int64*)array)[i] = (int32)BSWAP32(SlReadUint32());
 
			}
 
			return;
 
		}
 
	}
 

	
src/subsidy_gui.cpp
Show inline comments
 
@@ -46,11 +46,11 @@ struct SubsidyListWindow : Window {
 
		}
 

	
 
		if (num == 0) {
 
			y -= 10; /* "None" */
 
			y -= 10; // "None"
 
			if (y < 0) return;
 
		}
 

	
 
		y -= 11; /* "Services already subsidised:" */
 
		y -= 11; // "Services already subsidised:"
 
		if (y < 0) return;
 

	
 
		for (const Subsidy *s = _subsidies; s != endof(_subsidies); s++) {
0 comments (0 inline, 0 general)