implement achievements, console supports copy to clipboard

This commit is contained in:
Ondrej Novak 2025-04-18 20:03:47 +02:00
parent f5450c0f92
commit 936bafca5a
12 changed files with 133 additions and 25 deletions

View file

@ -188,7 +188,9 @@ void play_animation(const char *filename,char mode,int posy,char sound)
void *mgf=map_file_to_memory(file_icase_find(filename), &sz);
change_music(NULL);
if (mgf==NULL) return;
game_display_disable_crt_effect_temporary(1);
PlayMGFFile(mgf,BigPlayProc,posy,mode & 0x80);
game_display_disable_crt_effect_temporary(0);
unmap_file(mgf, sz);
}