summaryrefslogtreecommitdiff
path: root/src/video/cocoa/wnd_quartz.mm
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-10-04 20:51:50 +0000
committersmatz <smatz@openttd.org>2009-10-04 20:51:50 +0000
commit6c7f8fc8b4974a4546190d5c2e9abcdfa74f9382 (patch)
tree4b8b5d77d47b5e40e078db1d7862680ecdd69b39 /src/video/cocoa/wnd_quartz.mm
parentb243f6ca9761d75d3e5e957aa02a29500021b7d3 (diff)
downloadopenttd-6c7f8fc8b4974a4546190d5c2e9abcdfa74f9382.tar.xz
(svn r17701) -Codechange: don't start line with a space if it's not inside comment
Diffstat (limited to 'src/video/cocoa/wnd_quartz.mm')
-rw-r--r--src/video/cocoa/wnd_quartz.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video/cocoa/wnd_quartz.mm b/src/video/cocoa/wnd_quartz.mm
index 797880a78..95a2e981c 100644
--- a/src/video/cocoa/wnd_quartz.mm
+++ b/src/video/cocoa/wnd_quartz.mm
@@ -351,7 +351,7 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
/* Calculate total area we are blitting */
for (n = 0; n < dirtyRectCount; n++) {
blitArea += dirtyRects[n].size.width * dirtyRects[n].size.height;
- }
+ }
/*
* This might be completely stupid, but in my extremely subjective opinion it feels faster
@@ -396,8 +396,8 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
clippedImage = CGImageCreateWithImageInRect(fullImage, clipRect);
CGContextDrawImage(viewContext, blitRect, clippedImage);
CGImageRelease(clippedImage);
- }
- }
+ }
+ }
CGImageRelease(fullImage);
}