From 1e125c7ddcbff1caaeb8018ba8a51ebade323a0e Mon Sep 17 00:00:00 2001 From: Cruel Date: Tue, 1 Sep 2015 18:19:19 -0400 Subject: [PATCH] Fix typos --- include/cpp3ds/System/Thread.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cpp3ds/System/Thread.inl b/include/cpp3ds/System/Thread.inl index 816ea88..7645611 100644 --- a/include/cpp3ds/System/Thread.inl +++ b/include/cpp3ds/System/Thread.inl @@ -69,7 +69,7 @@ Thread::Thread(F functor) : m_thread (NULL), m_entryPoint(new priv::ThreadFunctor(functor)) { - #ifdef EMLATION + #ifdef EMULATION m_thread = new sf::Thread(functor); #endif initialize(); @@ -82,7 +82,7 @@ Thread::Thread(F function, A argument) : m_thread (NULL), m_entryPoint(new priv::ThreadFunctorWithArg(function, argument)) { - #ifdef EMLATION + #ifdef EMULATION m_thread = new sf::Thread(function, argument); #endif initialize(); @@ -95,7 +95,7 @@ Thread::Thread(void(C::*function)(), C* object) : m_thread (NULL), m_entryPoint(new priv::ThreadMemberFunc(function, object)) { - #ifdef EMLATION + #ifdef EMULATION m_thread = new sf::Thread(function, object); #endif initialize();