From 8565332cb47b0c8b2a863afe6b71dda7b0d6acf4 Mon Sep 17 00:00:00 2001 From: mateoconlechuga Date: Sat, 24 Aug 2019 22:07:51 -0600 Subject: [PATCH] don't autolaunch --- src/installer.asm | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/src/installer.asm b/src/installer.asm index be7b12e..f7f35ec 100644 --- a/src/installer.asm +++ b/src/installer.asm @@ -53,15 +53,13 @@ relocate installer_execute_cesium, ti.mpLcdCrsrImage call ti.EnoughMem jp c,ti.ErrMemory - ld hl,str_cesium_name_installer - ld de,ti.progToEdit - ld bc,8 - ldir - ld a,ti.kExtApps - jp ti.NewContext - -str_cesium_name_installer: - db cesium_name,0 + call ti.ClrScrn + call ti.HomeUp + ld hl,str_cesium_installed + call ti.PutS + call ti.GetKey + call ti.ClrScrn + jp ti.HomeUp str_delete_installer: if config_english @@ -71,6 +69,12 @@ else db 'Suppr. l',$27,'installateur?', 0 db 'suppr - oui',0 end if +str_cesium_installed: +if config_english + db 'Installed in ',$C1,'apps] menu.',0 +else + db 'Installé dans les apps.',0 +end if; end relocate @@ -80,3 +84,4 @@ if config_english else db 'Cesium d',$96,'j',$8f,' install',$96,', veuillez supprimer.',0 end if; +