Pixel-Composer/scripts/display_refresh/display_refresh.gml

17 lines
297 B
Text
Raw Normal View History

2022-11-01 09:06:03 +07:00
function display_refresh() {
2023-03-11 07:40:17 +07:00
o_main.win_wp = WIN_W;
o_main.win_hp = WIN_H;
room_width = WIN_W;
room_height = WIN_H;
2022-11-01 09:06:03 +07:00
display_set_gui_size(WIN_SW, WIN_SH);
clearPanel();
2023-03-11 12:40:34 +07:00
resetPanel();
2022-11-01 09:06:03 +07:00
PANEL_GRAPH.fullView();
PANEL_PREVIEW.fullView();
o_main.alarm[0] = 10;
PREF_SAVE();
}