Has the tile suggest BorderEnablerv1_11.csx has some issues that are listed below:
Lack some checks for os_linux and os_macosx this means while the script works, the borders wouldn't be displayed on such platforms the lines that lack this checks are
In the settings menu after applying the script is now impossible to change the border this is because of a missing change skipped from the old a change to gml_Object_obj_settingsmenu_Draw_0 from line 65 to line 70:
if (global.osflavor <= 2)
{
menu_max = 2
if (obj_time.j_ch == 0)
menu_max = 1
}
And the lines 92 and 1003
if ((menu_engage == 1) || keyboard_check_pressed(vk_left) || keyboard_check_pressed(vk_right))
if ((0 && menu_engage == 1) || keyboard_check_pressed(vk_right))
Has the tile suggest
BorderEnablerv1_11.csx
has some issues that are listed below:os_linux
andos_macosx
this means while the script works, the borders wouldn't be displayed on such platforms the lines that lack this checks aregml_Object_obj_settingsmenu_Draw_0
from line 65 to line 70:And the lines 92 and 1003