Skip to content

Commit

Permalink
Fixed steam identification bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrewThisNoise committed Jun 22, 2022
1 parent e3d90e6 commit 4e0b714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HoneySelect 2 Steam/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public MainWindow()
// Initialize code -------------------------------------
string tempgamedir =
System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
bool isGameConverted = File.Exists($"{tempgamedir}/abdata/BRConvert/OK.txt");
bool isGameConverted = File.Exists($"{tempgamedir}/abdata/BRConvert/OK.txt") || !File.Exists($"{tempgamedir}/abdata/localize/info/01.unity3d");
EnvironmentHelper.Initialize(_builtinLanguages);

EnvironmentHelper.Initialize(!isGameConverted ? _builtinLanguages : _builtinLanguagesConvert);
Expand Down

0 comments on commit 4e0b714

Please sign in to comment.