(svn r3445) - Fix: [ 1415379 ] Enhance documentation of lift destination
- Fix: wrong documentation of trees (Tron)
This commit is contained in:
		@@ -290,7 +290,7 @@ Town building
 | 
				
			|||||||
<ul>
 | 
					<ul>
 | 
				
			||||||
<li>m1 bits 6..0: position of the lift</li>
 | 
					<li>m1 bits 6..0: position of the lift</li>
 | 
				
			||||||
<li>m1 bit 7: if set the lift is moving</li>
 | 
					<li>m1 bit 7: if set the lift is moving</li>
 | 
				
			||||||
<li>m5 bit 7: if set then m5 bits 5..0 hold the final position of the lift divided by 6 (valid values 0..6 except 1)</li>
 | 
					<li>m5 bit 7: if set then m5 bits 5..0 hold the destination floor of the lift, which could be 0..6, except 1, so the building has 6 effective floors. This due to the fact that the first floor is 2 'normal' floors high. One 'normal' floor has a height of 6 lift positions.</li>
 | 
				
			||||||
</ul></li>
 | 
					</ul></li>
 | 
				
			||||||
</ul>
 | 
					</ul>
 | 
				
			||||||
</td></tr>
 | 
					</td></tr>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ the array so you can quickly see what is used and what is not.
 | 
				
			|||||||
      <td>4</td>
 | 
					      <td>4</td>
 | 
				
			||||||
      <td class="caption">trees</td>
 | 
					      <td class="caption">trees</td>
 | 
				
			||||||
      <td class="bits">XXXX XXXX</td>
 | 
					      <td class="bits">XXXX XXXX</td>
 | 
				
			||||||
      <td class="bits"><span class="free">OOOO OOOO OO</span>XX XXXX</td>
 | 
					      <td class="bits"><span class="free">OOOO OOOO</span> XXXX XXXX</td>
 | 
				
			||||||
      <td class="bits">XXXX XXXX</td>
 | 
					      <td class="bits">XXXX XXXX</td>
 | 
				
			||||||
      <td class="bits">XXXX XX<span class="free">OO</span></td>
 | 
					      <td class="bits">XXXX XX<span class="free">OO</span></td>
 | 
				
			||||||
      <td class="bits">XXXX XXXX</td>
 | 
					      <td class="bits">XXXX XXXX</td>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -174,6 +174,10 @@ static void AnimateTile_Town(TileIndex tile)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		_m[tile].m1 |= 0x80;
 | 
							_m[tile].m1 |= 0x80;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/** Building has 6 floors, number 0 .. 6, where 1 is illegal.
 | 
				
			||||||
 | 
							 *  This is due to the fact that the first floor is, in the graphics,
 | 
				
			||||||
 | 
							 *  the height of 2 'normal' floors.
 | 
				
			||||||
 | 
							 *  Furthermore, there are 6 lift positions from floor N (incl) to floor N + 1 (excl) */
 | 
				
			||||||
		do {
 | 
							do {
 | 
				
			||||||
			i = (Random() & 7) - 1;
 | 
								i = (Random() & 7) - 1;
 | 
				
			||||||
		} while (i < 0 || i == 1 || i * 6 == old);
 | 
							} while (i < 0 || i == 1 || i * 6 == old);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user