From 6761e348ec8bc8b097ec91f5f76582462a49a22e Mon Sep 17 00:00:00 2001 From: iProgramInCpp Date: Sun, 22 Oct 2023 10:56:21 +0300 Subject: [PATCH] * Remove PlatformDefinitions.hpp --- platforms/PlatformDefinitions.hpp | 40 ---------------------- platforms/xenon/projects/Minecraft.vcxproj | 1 - 2 files changed, 41 deletions(-) delete mode 100644 platforms/PlatformDefinitions.hpp diff --git a/platforms/PlatformDefinitions.hpp b/platforms/PlatformDefinitions.hpp deleted file mode 100644 index 6e64ba6..0000000 --- a/platforms/PlatformDefinitions.hpp +++ /dev/null @@ -1,40 +0,0 @@ -/******************************************************************** - Minecraft: Pocket Edition - Decompilation Project - Copyright (C) 2023 iProgramInCpp - - The following code is licensed under the BSD 1 clause license. - SPDX-License-Identifier: BSD-1-Clause - ********************************************************************/ - -// @DEPRECATED: This is a stupid-ass file. Whoever wrote it didn't understand that each of the SoundSystems aren't going to have their own special functions. -// Either rename it and move it into Sounds or remove it entirely if possible. - -#pragma once - -// Sound Systems -#include "client/sound/SoundSystem.hpp" - -#if 0 - -// Add sound system overrides here - -#elif defined(USE_OPENAL) - -// -- OpenAL based sound system -#include "openal/SoundSystemAL.hpp" -#define SOUND_SYSTEM_TYPE SoundSystemAL - -#elif defined(_WIN32) - -// -- DirectSound based sound system for Windows -#include "windows/SoundSystemWindows.hpp" -#define SOUND_SYSTEM_TYPE SoundSystemWindows - -#else - -// -- Empty SoundSystem placeholder. -#define SOUND_SYSTEM_TYPE SoundSystem - -#endif - -// @TODO: SoundSystemSL - Use this for the Android port diff --git a/platforms/xenon/projects/Minecraft.vcxproj b/platforms/xenon/projects/Minecraft.vcxproj index 24cf5d4..bf70d3f 100644 --- a/platforms/xenon/projects/Minecraft.vcxproj +++ b/platforms/xenon/projects/Minecraft.vcxproj @@ -316,7 +316,6 @@ -