Fixed some files encoding (Were not UTF-8)

Former-commit-id: a7ceb40bf03381e69ee968f79b732584268493dd
This commit is contained in:
Lynix
2012-11-23 17:51:03 +01:00
parent 158fdbf62b
commit a132b0a4e1
19 changed files with 27 additions and 27 deletions

View File

@@ -1,8 +1,8 @@
// Copyright (C) 2012 Jérôme Leclercq
// Copyright (C) 2012 Jérôme Leclercq
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
// Inspiré du code de la SFML par Laurent Gomila
// Inspiré du code de la SFML par Laurent Gomila
#include <Nazara/Core/Win32/ThreadImpl.hpp>
#include <Nazara/Core/Error.hpp>
@@ -13,7 +13,7 @@
NzThread::Id::Id(const NzThreadImpl* thread)
{
if (thread->m_thread)
m_handle = reinterpret_cast<void*>(thread->m_threadId); // Un entier transformé en pointeur : Hacky
m_handle = reinterpret_cast<void*>(thread->m_threadId); // Un entier transformé en pointeur : Hacky
else
m_handle = nullptr;
}