diff --git a/editor/scripts/WorldMaker b/editor/scripts/WorldMaker index e431715c2..21374b3d1 100644 --- a/editor/scripts/WorldMaker +++ b/editor/scripts/WorldMaker @@ -96,10 +96,12 @@ void checkDaList() { File f = new File("/tmp/tmp.ppm"); String header = "P6\n"+DestWidth+" "+DestHeight+"\n255\n" ; print("generating empty picture"); - FileOutputStream fos = new FileOutputStream(f,false); + FileOutputStream fos = new FileOutputStream(f, false); fos.write(header.getBytes()); byte[] buf = new byte[(int)DestWidth.intValue()*3]; - for (int i=0;i