From 60e0912a7b6d2491f9de9d22f0d21dbd8fe51fcc Mon Sep 17 00:00:00 2001 From: elasota Date: Wed, 5 Feb 2020 00:22:39 -0500 Subject: [PATCH] Disable room editor --- PortabilityLayer/PLHacks.cpp | 6 +++++- PortabilityLayer/PLHacks.h | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/PortabilityLayer/PLHacks.cpp b/PortabilityLayer/PLHacks.cpp index afa9387..cf51230 100644 --- a/PortabilityLayer/PLHacks.cpp +++ b/PortabilityLayer/PLHacks.cpp @@ -10,8 +10,12 @@ bool IsMacPlusSoundBanned() return false; } -// High scores disabled until dialogs work bool IsHighScoreDisabled() { return false; } + +bool IsRoomEditorDisabled() +{ + return true; +} diff --git a/PortabilityLayer/PLHacks.h b/PortabilityLayer/PLHacks.h index bbbdda4..915700e 100644 --- a/PortabilityLayer/PLHacks.h +++ b/PortabilityLayer/PLHacks.h @@ -3,3 +3,4 @@ bool IsMacPlusGraphicBanned(); bool IsMacPlusSoundBanned(); bool IsHighScoreDisabled(); +bool IsRoomEditorDisabled();