From f731710ed09750e366e952c432682a49ed40fc03 Mon Sep 17 00:00:00 2001 From: Infi Date: Mon, 10 Jun 2024 22:29:08 +0200 Subject: [PATCH] Switch to dalamud safe write --- ChatTwo/FontManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/FontManager.cs b/ChatTwo/FontManager.cs index afe5177..f8b9626 100644 --- a/ChatTwo/FontManager.cs +++ b/ChatTwo/FontManager.cs @@ -46,7 +46,7 @@ public class FontManager .ReadAsByteArrayAsync() .Result; - File.WriteAllBytes(filePath, gameSym); + Dalamud.Utility.Util.WriteAllBytesSafe(filePath, gameSym); } _gameSymFont = new FaceData(gameSym);