Disable room editor

This commit is contained in:
elasota
2020-02-05 00:22:39 -05:00
parent 4f24439f7e
commit 60e0912a7b
2 changed files with 6 additions and 1 deletions

View File

@@ -10,8 +10,12 @@ bool IsMacPlusSoundBanned()
return false;
}
// High scores disabled until dialogs work
bool IsHighScoreDisabled()
{
return false;
}
bool IsRoomEditorDisabled()
{
return true;
}

View File

@@ -3,3 +3,4 @@
bool IsMacPlusGraphicBanned();
bool IsMacPlusSoundBanned();
bool IsHighScoreDisabled();
bool IsRoomEditorDisabled();