diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-03 22:12:04 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-03 22:12:04 +0200 |
commit | 407b6cab4093b3c0ee23412ac07cf83fd9f03b82 (patch) | |
tree | 164d4942088e0540ae668ecd184dc19e10036927 /c/episodelistview.cpp | |
parent | ebac89ec6ae0aca646420320c019a0e1cbb79d7c (diff) | |
download | EpisodeBrowser-407b6cab4093b3c0ee23412ac07cf83fd9f03b82.tar.gz |
Minor changes.
Diffstat (limited to 'c/episodelistview.cpp')
-rw-r--r-- | c/episodelistview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c/episodelistview.cpp b/c/episodelistview.cpp index c278a35..d35bebb 100644 --- a/c/episodelistview.cpp +++ b/c/episodelistview.cpp @@ -324,12 +324,12 @@ void EpisodeListView::Update() wchar_t siEp[16]; LVITEM lviEpisode = {LVIF_TEXT|LVIF_PARAM}; for (int iEp = 1; iEp <= cEp; iEp++) { - extern char g_currentScreenwriter[]; + extern char g_limitScreenwriter[]; extern int g_bViewTVOriginal, g_bViewWatched; - if (g_currentScreenwriter[0] + if (g_limitScreenwriter[0] && !Pl("episode_data","episode_datum", - iEp,"Screenwriter",g_currentScreenwriter)) + iEp,"Screenwriter",g_limitScreenwriter)) continue; if (!g_bViewWatched) |