Changeset - r19163:718dec875d11
[Not reviewed]
master
0 1 0
frosch - 12 years ago 2012-03-19 22:52:37
frosch@openttd.org
(svn r24051) -Fix: Comment.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/newgrf.cpp
Show inline comments
 
@@ -6969,7 +6969,7 @@ static void GRFSound(ByteReader *buf)
 
						LoadGRFSound(offs);
 
					}
 
				}
 
				FioSkipBytes(len - 1); // <type> is not included in the length for pseudo-sprites.
 
				FioSkipBytes(len - 1); // already read <action>
 
				break;
 

	
 
			case 0xFE:
 
@@ -6979,13 +6979,13 @@ static void GRFSound(ByteReader *buf)
 
					if (FioReadByte() != 0) grfmsg(1, "GRFSound: Import type mismatch");
 
					ImportGRFSound();
 
				} else {
 
					FioSkipBytes(len - 1);
 
					FioSkipBytes(len - 1); // already read <action>
 
				}
 
				break;
 

	
 
			default:
 
				grfmsg(1, "GRFSound: Unexpected Action %x found, skipping", action);
 
				FioSkipBytes(len - 1);
 
				FioSkipBytes(len - 1); // already read <action>
 
				break;
 
		}
 
	}
0 comments (0 inline, 0 general)