about page build info

This commit is contained in:
Tanasart 2024-09-09 11:26:31 +07:00
parent ce25d7e49d
commit c85818dad5
3 changed files with 9 additions and 2 deletions

View file

@ -679,7 +679,7 @@
"isEcma":false,
"LibraryEmitters":[],
"MetaData":{
"IDEVersion":"2024.4.1.152",
"IDEVersion":"2024.6.2.162",
},
"name":"PixelComposer",
"resources":[

View file

@ -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");

View file

@ -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);