diff --git a/source/TitleState.hx b/source/TitleState.hx index 9505b14061d..28ac7255f10 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -93,7 +93,7 @@ class TitleState extends MusicBeatState if (!FlxG.save.data.did_warning) { FlxG.save.data.did_warning = true; - CoolUtil.showPopUp("Please note that Jordan Santiago does not work on this port!\n\nIf you have any issues or questions with this version, please contact @mcagabe19 (mc.9 on Discord)!\n\n", "Important"); + CoolUtil.showPopUp("Please note that Jordan Santiago does not work on this port!\n\nIf you have any issues or questions with this version, please contact @mcagabe19 (mc.9 on Discord)!\n\n", "Notice!"); } #if (CHECK_FOR_UPDATES) diff --git a/source/options/OptionsState.hx b/source/options/OptionsState.hx index cfbbab15759..992b32a2670 100644 --- a/source/options/OptionsState.hx +++ b/source/options/OptionsState.hx @@ -33,7 +33,7 @@ class OptionsState extends MusicBeatState var konamiIndex:Int = 0; // Track the progress in the Konami code sequence var konamiCode = []; var isEnteringKonamiCode:Bool = false; - var options:Array = ['Note Colors', 'Controls', 'Adjust Delay and Combo', 'Graphics', 'Optimization' #if (desktop && android), 'Game Rendering' #end, 'Visuals and UI', 'Gameplay', 'Misc', 'Mobile Options']; + var options:Array = ['Note Colors', 'Controls', 'Adjust Delay and Combo', 'Graphics', 'Optimization' #if (desktop || android), 'Game Rendering' #end, 'Visuals and UI', 'Gameplay', 'Misc', 'Mobile Options']; private var grpOptions:FlxTypedGroup; private static var curSelected:Int = 0; public static var menuBG:FlxSprite;