diff --git a/src/Client/Client.vcxproj b/src/Client/Client.vcxproj index 429d15392..c86086c4b 100644 --- a/src/Client/Client.vcxproj +++ b/src/Client/Client.vcxproj @@ -1,177 +1,179 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - {8A7D82BD-178A-4785-B41B-70EDE998920A} - Win32Proj - Client - 8.1 - - - - DynamicLibrary - true - v140_xp - Unicode - - - DynamicLibrary - false - v140 - true - Unicode - - - DynamicLibrary - true - v140_xp - Unicode - - - DynamicLibrary - false - v140_xp - true - Unicode - - - - - - - - - - - - - - - - - - - - - true - - - true - - - false - - - false - - - - - - Level3 - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) - false - Fast - - MultiThreadedDebug - - - Windows - true - - - - - - - Level3 - Disabled - _DEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) - false - Fast - - MultiThreadedDebug - - - Windows - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) - false - Fast - - MultiThreaded - - - Windows - true - true - true - - - - - Level3 - - - MaxSpeed - true - true - NDEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) - false - Fast - - MultiThreaded - - - Windows - true - true - true - - - - - - - - - - - - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {8A7D82BD-178A-4785-B41B-70EDE998920A} + Win32Proj + Client + 5.0 + + + + DynamicLibrary + true + v140_xp + Unicode + + + DynamicLibrary + false + v140_xp + true + Unicode + + + DynamicLibrary + true + v140_xp + Unicode + + + DynamicLibrary + false + v140_xp + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) + false + Fast + + MultiThreadedDebug + + + Windows + true + + + + + + + Level3 + Disabled + _DEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) + false + Fast + + MultiThreadedDebug + + + Windows + true + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) + false + Fast + + MultiThreaded + + + Windows + true + true + true + 5.00 + Default + + + + + Level3 + + + MaxSpeed + true + true + NDEBUG;_WINDOWS;_USRDLL;CLIENT_EXPORTS;%(PreprocessorDefinitions) + false + Fast + + MultiThreaded + + + Windows + true + true + true + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Client/NotchyGenerator.c b/src/Client/NotchyGenerator.c index b808291b8..e402e9b37 100644 --- a/src/Client/NotchyGenerator.c +++ b/src/Client/NotchyGenerator.c @@ -260,7 +260,7 @@ bool NotchyGen_CanGrowTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 treeHeig return true; } -void Notchy_GenTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 height) { +void NotchyGen_GrowTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 height) { Int32 baseHeight = height - 4; Int32 index = 0; diff --git a/src/Client/NotchyGenerator.h b/src/Client/NotchyGenerator.h index 23e1a40b6..ec5012eb2 100644 --- a/src/Client/NotchyGenerator.h +++ b/src/Client/NotchyGenerator.h @@ -14,5 +14,5 @@ CLIENT_FUNC void NotchyGen_PlantFlowers(); CLIENT_FUNC void NotchyGen_PlantMushrooms(); CLIENT_FUNC void NotchyGen_PlantTrees(); bool NotchyGen_CanGrowTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 treeHeight); -void Notchy_GenTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 height); +void NotchyGen_GrowTree(Int32 treeX, Int32 treeY, Int32 treeZ, Int32 height); #endif \ No newline at end of file