From a27ed4cf442c74f4d0655e6ac7a5afc2444b0538 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 25 Nov 2012 02:29:01 +0000 Subject: [PATCH] Fixed compile after merging master --- src/windows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows.c b/src/windows.c index df3f6b2c..4dd0f9ad 100644 --- a/src/windows.c +++ b/src/windows.c @@ -1828,7 +1828,7 @@ _win_handle_page(const int * const ch) else if (*page_start >= y) *page_start = y - page_space; - _wins[_curr_prof_win].paged = 1; + current->paged = 1; dirty = TRUE; } else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up *page_start -= 4; @@ -1837,7 +1837,7 @@ _win_handle_page(const int * const ch) if (*page_start < 0) *page_start = 0; - _wins[_curr_prof_win].paged = 1; + current->paged = 1; dirty = TRUE; } }