fix error messages

This commit is contained in:
Boris Nikolaev
2026-02-16 12:19:53 +03:00
parent 60510b1d7d
commit 87b48441f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ public class ChrFile
} }
catch (Exception e) catch (Exception e)
{ {
Context.current.errors.Add(new Error(file.name, "Error then process text file", e)); Context.current.errors.Add(new Error(file.name, "Error while process text file", e));
} }
} }
+1 -1
View File
@@ -73,7 +73,7 @@ public static class TM2Format
} }
catch (Exception e) catch (Exception e)
{ {
Context.current.errors.Add(new Error(currentFile.name, "Error then import texture", e)); Context.current.errors.Add(new Error(currentFile.name, "Error while import texture", e));
palette = null; palette = null;
} }