From 1b113c2c22a356f79d18850557fa4a14adbd1e82 Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Fri, 20 Sep 2013 15:11:22 +0200 Subject: [PATCH] Fix typo --- tools/xcode/templates/SFML/SFML App.xctemplate/main.cpp | 4 ++-- tools/xcode/templates/SFML/SFML CLT.xctemplate/main.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/xcode/templates/SFML/SFML App.xctemplate/main.cpp b/tools/xcode/templates/SFML/SFML App.xctemplate/main.cpp index b1b45abf..94e62106 100644 --- a/tools/xcode/templates/SFML/SFML App.xctemplate/main.cpp +++ b/tools/xcode/templates/SFML/SFML App.xctemplate/main.cpp @@ -68,7 +68,7 @@ int main(int, char const**) window.close(); } - // Espace pressed : exit + // Escape pressed : exit if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape) { window.close(); } @@ -86,6 +86,6 @@ int main(int, char const**) // Update the window window.display(); } - + return EXIT_SUCCESS; } diff --git a/tools/xcode/templates/SFML/SFML CLT.xctemplate/main.cpp b/tools/xcode/templates/SFML/SFML CLT.xctemplate/main.cpp index daeddf04..f5e5d2e7 100644 --- a/tools/xcode/templates/SFML/SFML CLT.xctemplate/main.cpp +++ b/tools/xcode/templates/SFML/SFML CLT.xctemplate/main.cpp @@ -66,7 +66,7 @@ int main(int argc, char const** argv) window.close(); } - // Espace pressed : exit + // Escape pressed : exit if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape) { window.close(); } @@ -84,6 +84,6 @@ int main(int argc, char const** argv) // Update the window window.display(); } - + return EXIT_SUCCESS; }