From 71f34600bc41c241ab7baef2825e2b31eac740cc Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Sat, 29 Jun 2013 20:42:42 +0200 Subject: [PATCH] Fix typos --- src/SFML/Window/OSX/SFWindowController.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SFML/Window/OSX/SFWindowController.mm b/src/SFML/Window/OSX/SFWindowController.mm index d0220b3a9..777046d93 100644 --- a/src/SFML/Window/OSX/SFWindowController.mm +++ b/src/SFML/Window/OSX/SFWindowController.mm @@ -189,7 +189,7 @@ * | Note for future version | * --------------------------- * - * starting with OS 10.5 NSView provides + * starting with OS 10.6 NSView provides * a new method -enterFullScreenMode:withOptions: * which could be a good alternative. */ @@ -212,7 +212,7 @@ // If a fullscreen window was requested... if (style & sf::Style::Fullscreen && mode != sf::VideoMode::getDesktopMode()) { - /// ... we set the "read size" of the view (that is the back buffer size). + /// ... we set the "real size" of the view (that is the back buffer size). [m_oglView setRealSize:NSMakeSize(m_fullscreenMode->width, m_fullscreenMode->height)]; }