From bb130687181f6413c2ab63528b575a3909fa2cc5 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:10:08 +0200 Subject: [PATCH] PckEditor - Fixed setting save location when oopening from a filepath --- PCK-Studio/Controls/PckEditor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PCK-Studio/Controls/PckEditor.cs b/PCK-Studio/Controls/PckEditor.cs index e27558ba..d5bd4e7f 100644 --- a/PCK-Studio/Controls/PckEditor.cs +++ b/PCK-Studio/Controls/PckEditor.cs @@ -1625,6 +1625,7 @@ namespace PckStudio.Controls public bool Open(string filepath, OMI.Endianness endianness) { SetEndianess(endianness); + saveLocation = filepath; try { var reader = new PckFileReader(endianness);