mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-12 07:16:49 +01:00
8 lines
127 B
Text
8 lines
127 B
Text
|
function window_close() {
|
||
|
if(MODIFIED && !READONLY) {
|
||
|
dialogCall(o_dialog_exit);
|
||
|
} else {
|
||
|
PREF_SAVE();
|
||
|
game_end();
|
||
|
}
|
||
|
}
|