Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-12 06:54:02 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-12 06:54:16 +0300
commit7583fcbae1fb9ac58c52231e2439fff630e13c47 (patch)
tree0261d3451b338594efbd81458c36e4732fb10888 /SearchForm.cs
parentab13256978013752786e6fd118d40a5a3856fea3 (diff)
Huge rework to add support for applications and non-NES games
Diffstat (limited to 'SearchForm.cs')
-rw-r--r--SearchForm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SearchForm.cs b/SearchForm.cs
index 1f0f73fb..15ae4fdf 100644
--- a/SearchForm.cs
+++ b/SearchForm.cs
@@ -18,7 +18,7 @@ namespace com.clusterrr.hakchi_gui
if (textBoxSearch.Text.Length > 0)
{
for (int i = 1; i < mainForm.checkedListBoxGames.Items.Count; i++)
- if ((mainForm.checkedListBoxGames.Items[i] as NesGame).Name.
+ if ((mainForm.checkedListBoxGames.Items[i] as NesMiniApplication).Name.
ToLower().StartsWith(textBoxSearch.Text.ToLower()))
{
mainForm.checkedListBoxGames.SelectedIndex = i;