Whitespace changes.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@14050 282e977c-c81d-0410-88c4-b93c2d0d6712
master
akirschbaum 2010-11-03 07:21:21 +00:00
parent e69c74750e
commit 056a8c6230
1 changed files with 5 additions and 3 deletions

View File

@ -99,7 +99,9 @@ void checkDaList() {
FileOutputStream fos = new FileOutputStream(f, false); FileOutputStream fos = new FileOutputStream(f, false);
fos.write(header.getBytes()); fos.write(header.getBytes());
byte[] buf = new byte[(int)DestWidth.intValue()*3]; byte[] buf = new byte[(int)DestWidth.intValue()*3];
for (int i=0;i<DestHeight.intValue();i++) fos.write(buf); for (int i = 0; i < DestHeight.intValue(); i++) {
fos.write(buf);
}
fos.close(); fos.close();
firstRun = true; firstRun = true;
} }