diff --git a/PixelComposer.yyp b/PixelComposer.yyp index 5448c3a40..d88f379ac 100644 --- a/PixelComposer.yyp +++ b/PixelComposer.yyp @@ -679,7 +679,7 @@ "isEcma":false, "LibraryEmitters":[], "MetaData":{ - "IDEVersion":"2024.4.1.152", + "IDEVersion":"2024.6.2.162", }, "name":"PixelComposer", "resources":[ diff --git a/objects/o_dialog_about/Draw_64.gml b/objects/o_dialog_about/Draw_64.gml index 62e048d76..9f2fbcb24 100644 --- a/objects/o_dialog_about/Draw_64.gml +++ b/objects/o_dialog_about/Draw_64.gml @@ -14,8 +14,13 @@ if !ready exit; draw_sprite_ui_uniform(THEME.icon_64, 0, cx, dialog_y + ui(56)); draw_set_text(_f_ico_h5, fa_center, fa_top, COLORS._main_text_accent); draw_text(cx, ly, "Pixel Composer"); - ly += string_height("l"); + + draw_set_font(f_p3); + draw_set_color(COLORS._main_text_sub); + draw_text(cx, ly - ui(4), code_is_compiled()? "Native build" : "VM build"); + ly += string_height("l"); + draw_set_text(f_p0, fa_center, fa_top, COLORS._main_text_sub); draw_text(cx, ly, "2024, MakhamDev"); diff --git a/scripts/__initPen/__initPen.gml b/scripts/__initPen/__initPen.gml index 197eebd2c..bce249085 100644 --- a/scripts/__initPen/__initPen.gml +++ b/scripts/__initPen/__initPen.gml @@ -19,6 +19,8 @@ PEN_RIGHT_PRESS = false; PEN_RIGHT_RELEASE = false; function __initPen() { + if(OS == os_macosx) return; + var c = tabletstuff_get_init_error_code(); if (c != tabletstuff_error_none) show_error("Unable to initialize TabletStuff. Code=" + tabletstuff_error_to_string(c), true);