From 91e7667e351266c70c2462f00d263918a5c1771d Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Tue, 29 Sep 2020 14:22:58 -0700 Subject: [PATCH] Since the contents of Term aren't used, don't bother to call Term_activate() from drawRect(). --- src/main-cocoa.m | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main-cocoa.m b/src/main-cocoa.m index 31eebf6cd..3cc5dff74 100644 --- a/src/main-cocoa.m +++ b/src/main-cocoa.m @@ -3291,7 +3291,6 @@ static int compare_nsrect_yorigin_greater(const void *ap, const void *bp) NSGraphicsContext *nsctx = nil; CGContextRef ctx = 0; NSFont* screenFont = nil; - term *old = 0; int graf_width = 0, graf_height = 0; int overdraw_row = 0, overdraw_max = 0; wchar_t blank = 0; @@ -3299,8 +3298,6 @@ static int compare_nsrect_yorigin_greater(const void *ap, const void *bp) rect.origin.x + rect.size.width > self.borderSize.width && rect.origin.y < bottomY && rect.origin.y + rect.size.height > self.borderSize.height) { - old = Term; - Term_activate(self->terminal); nsctx = [NSGraphicsContext currentContext]; ctx = [nsctx graphicsPort]; screenFont = [self.angbandViewFont screenFont]; @@ -3326,9 +3323,6 @@ static int compare_nsrect_yorigin_greater(const void *ap, const void *bp) if (overdraw_row && invalidCount > 1) { sortedRects = malloc(invalidCount * sizeof(NSRect)); if (sortedRects == 0) { - if (old != 0) { - Term_activate(old); - } NSException *exc = [NSException exceptionWithName:@"OutOfMemory" reason:@"sorted rects in drawRect" userInfo:nil]; @@ -3675,9 +3669,6 @@ static int compare_nsrect_yorigin_greater(const void *ap, const void *bp) } free(sortedRects); - if (old != 0) { - Term_activate(old); - } } - (BOOL)isOrderedIn -- 2.11.0