mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
21 lines
347 B
Plaintext
21 lines
347 B
Plaintext
function window_refresh() {
|
|
o_main.win_wp = WIN_W;
|
|
o_main.win_hp = WIN_H;
|
|
room_width = WIN_W;
|
|
room_height = WIN_H;
|
|
|
|
display_set_gui_size(WIN_SW, WIN_SH);
|
|
}
|
|
|
|
function display_refresh() {
|
|
window_refresh();
|
|
|
|
clearPanel();
|
|
resetPanel();
|
|
|
|
PANEL_GRAPH.fullView();
|
|
PANEL_PREVIEW.fullView();
|
|
|
|
o_main.alarm[0] = 10;
|
|
PREF_SAVE();
|
|
} |