Skip to content

Commit

Permalink
Add missing _status_Label etc
Browse files Browse the repository at this point in the history
  • Loading branch information
sefinek committed Mar 10, 2024
1 parent b6c6ded commit cf8ce73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Stella.Launcher/Forms/Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ private async void Main_Shown(object sender, EventArgs e)
_pictureBox2 = pictureBox2;
_changeBg_LinkLabel = changeBg_LinkLabel;

_status_Label = status_Label;

_preparingPleaseWait = PreparingPleaseWait;
_progressBar1 = progressBar1;

Expand Down Expand Up @@ -345,7 +347,7 @@ private async void Main_Shown(object sender, EventArgs e)
Stages.UpdateStage(11, "Checking Genshin Stella Mod.exe and ReShade.ini...");

// Check Genshin Stella Mod.exe
if (!File.Exists(Run.GsmPath))
if (!File.Exists(Run.GsmPath) && !Debugger.IsAttached)
{
string fileName = Path.GetFileName(Run.GsmPath);

Expand Down

0 comments on commit cf8ce73

Please sign in to comment.