aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--README.rtfbin2183 -> 2573 bytes
-rw-r--r--c/episodelistview.c2
-rw-r--r--c/main.c2
4 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6f1eb72..ff7123d 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ ROOT = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
C = $(ROOT)c/main.c
OBJ != cd $(ROOT)c && ls *.c | grep -v main.c | sed 's/c$$/obj/'
OBJ += resource.obj
-PL += $(ROOT)pl/track_episodes.pl
+PL = $(ROOT)pl/track_episodes.pl
PL += $(ROOT)pl/local_episodes.pl
PL += $(ROOT)pl/episode_data.pl
diff --git a/README.rtf b/README.rtf
index 63c7598..d62c27f 100644
--- a/README.rtf
+++ b/README.rtf
Binary files differ
diff --git a/c/episodelistview.c b/c/episodelistview.c
index dbccd29..040383a 100644
--- a/c/episodelistview.c
+++ b/c/episodelistview.c
@@ -18,7 +18,7 @@ ElvCreate()
LVCOLUMN lvc;
LpLviElvSelection = malloc(sizeof(LVITEM));
- if (!LpLviElvSelection) return 0;
+ if (!LpLviElvSelection) return NULL;
HElv = LvCreate((HMENU)IDC_EPISODELISTVIEW);
lvc.mask = LVCF_WIDTH|LVCF_TEXT|LVCF_SUBITEM;
diff --git a/c/main.c b/c/main.c
index 1ef714c..1a4e287 100644
--- a/c/main.c
+++ b/c/main.c
@@ -185,8 +185,6 @@ INT_PTR CALLBACK
AboutDlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg) {
- case WM_INITDIALOG:
- return TRUE;
case WM_CLOSE:
EndDialog(hWnd, IDOK);
break;