mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-27 07:26:33 +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();
|
||
|
}
|
||
|
}
|