Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Wrappers/crn.h')
-rw-r--r--Source/Wrappers/crn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Wrappers/crn.h b/Source/Wrappers/crn.h
index 228159ec..086c8c04 100644
--- a/Source/Wrappers/crn.h
+++ b/Source/Wrappers/crn.h
@@ -21,14 +21,14 @@
//
//-----------------------------------------------------------------------------
#pragma once
-//crn uses size_t without including headers that contains it on mac
+// crn uses size_t without including headers that contains it on mac
#include <cstdlib>
#include <crn_mipmapped_texture.h>
#include <crn_texture_conversion.h>
#include <crn_buffer_stream.h>
-//crnlib pulls in wingdi.h on Windows which defines a GetObject macro in some circumstances.
-//This collides with GetObject functions in angelscript, so we undefine it here.
+// crnlib pulls in wingdi.h on Windows which defines a GetObject macro in some circumstances.
+// This collides with GetObject functions in angelscript, so we undefine it here.
#ifdef GetObject
#undef GetObject
#endif