diff --git a/Hearthstone Deck Tracker/Card.cs b/Hearthstone Deck Tracker/Card.cs index 3dabe8a435..0a1cf9b2cd 100644 --- a/Hearthstone Deck Tracker/Card.cs +++ b/Hearthstone Deck Tracker/Card.cs @@ -10,13 +10,11 @@ namespace Hearthstone_Deck_Tracker { public class Card : ICloneable { - //cards loaded from playerdeck? public Card() { Count = 1; } - //cards loaded from db public Card(string id, string playerClass, string rarity, string type, string name, int cost, string localizedName, int inHandCount, int count) { diff --git a/Hearthstone Deck Tracker/MainWindow.xaml.cs b/Hearthstone Deck Tracker/MainWindow.xaml.cs index d7e8a9e2e9..f5852a5c67 100644 --- a/Hearthstone Deck Tracker/MainWindow.xaml.cs +++ b/Hearthstone Deck Tracker/MainWindow.xaml.cs @@ -104,9 +104,7 @@ public MainWindow() //find hs directory if (string.IsNullOrEmpty(_config.HearthstoneDirectory) || !File.Exists(_config.HearthstoneDirectory + @"\Hearthstone.exe")) { - using (var hsDirKey = - Registry.LocalMachine.OpenSubKey( - @"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Hearthstone")) + using (var hsDirKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Hearthstone")) { if (hsDirKey != null) {