MainForm - Rename 'openPck' to 'OpenPck'

This commit is contained in:
miku-666
2024-04-05 22:57:07 +02:00
parent 88af7fadb7
commit 4e19ccc7a3

View File

@@ -153,7 +153,7 @@ namespace PckStudio
{
CheckSaveState();
treeViewMain.Nodes.Clear();
currentPCK = openPck(filepath);
currentPCK = OpenPck(filepath);
if (currentPCK == null)
{
MessageBox.Show(this, string.Format("Failed to load {0}", Path.GetFileName(filepath)), "Error");
@@ -265,7 +265,7 @@ namespace PckStudio
}
}
private PckFile openPck(string filePath)
private PckFile OpenPck(string filePath)
{
isTemplateFile = false;
saveLocation = filePath;