Skip to content

Commit b9c1bb0

Browse files
committed
Fixed application loading .BIN data from the wrong folder
1 parent 758f239 commit b9c1bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WzVisualizer/IO/GridIOUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private static void ReadFileContents(string path, ref List<BinData> datas)
5959

6060
internal static void ImportGrid(string file, DataGridView grid, AddGridRowCallBack callbackTask)
6161
{
62-
string path = string.Format("{0}/{1}", ImagesFolder, file);
62+
string path = string.Format("{0}/{1}", ExportFolder, file);
6363
if (!File.Exists(path))
6464
return;
6565
List<BinData> datas = new List<BinData>();

0 commit comments

Comments
 (0)