Przeglądaj źródła

FileConverter: do convert if local param no longer exists

Yuxiao Mao 3 tygodni temu
rodzic
commit
a8581136d8
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      hxd/fs/FileConverter.hx

+ 1 - 1
hxd/fs/FileConverter.hx

@@ -337,7 +337,7 @@ class FileConverter {
 		conv.originalFilename = e.name;
 		var hasLocalParams = conv.hasLocalParams();
 
-		if( alreadyGen && !hasLocalParams && match.time == time #if js && (match.milliseconds == null || match.milliseconds == milliseconds ) #end ) {
+		if( alreadyGen && !hasLocalParams && match.localParamsHash == null && match.time == time #if js && (match.milliseconds == null || match.milliseconds == milliseconds ) #end ) {
 			conv.cleanup();
 			return; // not changed (time stamp)
 		}