File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ public void ProcessTiles()
118118 {
119119 bool allowNoConvert = fixZData ;
120120 bool skipConvert = false ;
121+ bool altered = false ;
121122
122123 if ( ! palette . Loaded )
123124 {
@@ -206,14 +207,19 @@ public void ProcessTiles()
206207 continue ;
207208 }
208209
210+ altered = true ;
211+
209212 if ( imageFilename != actualImageFilename )
210213 File . Delete ( actualImageFilename ) ;
211214 }
212215
213216 if ( fixZData )
217+ {
214218 tmp . FixZData ( ) ;
219+ altered = true ;
220+ }
215221
216- if ( tmp . Save ( supressBackups ) && ! skipConvert )
222+ if ( altered && tmp . Save ( supressBackups ) && ! skipConvert )
217223 processedFilesLog ? . UpdateOrAddFile ( imageFilename ) ;
218224 }
219225
Original file line number Diff line number Diff line change 3333// You can specify all the values or you can default the Build and Revision Numbers
3434// by using the '*' as shown below:
3535// [assembly: AssemblyVersion("1.0.*")]
36- [ assembly: AssemblyVersion ( "4.0.0.0 " ) ]
37- [ assembly: AssemblyFileVersion ( "4.0.0.0 " ) ]
36+ [ assembly: AssemblyVersion ( "4.0.0.1 " ) ]
37+ [ assembly: AssemblyFileVersion ( "4.0.0.1 " ) ]
3838[ assembly: NeutralResourcesLanguageAttribute ( "" ) ]
You can’t perform that action at this time.
0 commit comments