From 47a2cc165a1052aad5c007c236373cbf50d87263 Mon Sep 17 00:00:00 2001 From: Thomas Fischer Date: Sat, 15 Mar 2014 14:05:30 +0100 Subject: [PATCH] moved header file to have a more meaningful naming --- Engine/source/platform/types.codewarrior.h | 4 ++-- Engine/source/platform/types.gcc.h | 4 ++-- Engine/source/platform/types.visualc.h | 4 ++-- Engine/source/platform/{types.win32.h => types.win.h} | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename Engine/source/platform/{types.win32.h => types.win.h} (100%) diff --git a/Engine/source/platform/types.codewarrior.h b/Engine/source/platform/types.codewarrior.h index 38d9d1d49..f01f312ae 100644 --- a/Engine/source/platform/types.codewarrior.h +++ b/Engine/source/platform/types.codewarrior.h @@ -54,11 +54,11 @@ typedef unsigned long long U64; ///< Compiler independent Unsigned 64-bit in #if defined(_WIN64) # define TORQUE_OS_STRING "Win64" # define TORQUE_OS_WIN64 -# include "platform/types.win32.h" +# include "platform/types.win.h" #if defined(_WIN32) # define TORQUE_OS_STRING "Win32" # define TORQUE_OS_WIN32 -# include "platform/types.win32.h" +# include "platform/types.win.h" #elif defined(macintosh) || defined(__APPLE__) # define TORQUE_OS_STRING "Mac" diff --git a/Engine/source/platform/types.gcc.h b/Engine/source/platform/types.gcc.h index e7f0f6953..b562fc018 100644 --- a/Engine/source/platform/types.gcc.h +++ b/Engine/source/platform/types.gcc.h @@ -58,13 +58,13 @@ typedef unsigned long long U64; #if defined(_WIN64) # define TORQUE_OS_STRING "Win64" # define TORQUE_OS_WIN64 -# include "platform/types.win32.h" +# include "platform/types.win.h" #if defined(__WIN32__) || defined(_WIN32) # define TORQUE_OS_STRING "Win32" # define TORQUE_OS_WIN32 # define TORQUE_SUPPORTS_NASM # define TORQUE_SUPPORTS_GCC_INLINE_X86_ASM -# include "platform/types.win32.h" +# include "platform/types.win.h" #elif defined(SN_TARGET_PS3) # define TORQUE_OS_STRING "PS3" diff --git a/Engine/source/platform/types.visualc.h b/Engine/source/platform/types.visualc.h index 1ae8d5113..5b264e4bf 100644 --- a/Engine/source/platform/types.visualc.h +++ b/Engine/source/platform/types.visualc.h @@ -58,11 +58,11 @@ typedef unsigned _int64 U64; #elif defined( _XBOX_VER ) # define TORQUE_OS_STRING "Xbox" # define TORQUE_OS_XBOX -# include "platform/types.win32.h" +# include "platform/types.win.h" #elif defined( _WIN32 ) # define TORQUE_OS_STRING "Win32" # define TORQUE_OS_WIN32 -# include "platform/types.win32.h" +# include "platform/types.win.h" #elif defined( _WIN64 ) # define TORQUE_OS_STRING "Win64" # define TORQUE_OS_WIN64 diff --git a/Engine/source/platform/types.win32.h b/Engine/source/platform/types.win.h similarity index 100% rename from Engine/source/platform/types.win32.h rename to Engine/source/platform/types.win.h