From 66af1189fcfe654c7cdcb394e26b1da061dda751 Mon Sep 17 00:00:00 2001 From: mateoconlechuga Date: Sat, 24 Aug 2019 22:54:36 -0600 Subject: [PATCH] fix character / prompt --- src/installer.asm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/installer.asm b/src/installer.asm index f7f35ec..c49e9b7 100644 --- a/src/installer.asm +++ b/src/installer.asm @@ -24,6 +24,14 @@ installer_start: installer_execute_cesium.run relocate installer_execute_cesium, ti.mpLcdCrsrImage + call ti.ClrScrn + call ti.HomeUp + ld hl,str_cesium_installed + call ti.PutS + call ti.GetKey + call ti.NewLine + call ti.NewLine + ld hl,str_delete_installer call ti.PutS call ti.NewLine @@ -53,11 +61,6 @@ relocate installer_execute_cesium, ti.mpLcdCrsrImage call ti.EnoughMem jp c,ti.ErrMemory - call ti.ClrScrn - call ti.HomeUp - ld hl,str_cesium_installed - call ti.PutS - call ti.GetKey call ti.ClrScrn jp ti.HomeUp @@ -73,7 +76,7 @@ str_cesium_installed: if config_english db 'Installed in ',$C1,'apps] menu.',0 else - db 'Installé dans les apps.',0 + db 'Install',$96,' dans les apps.',0 end if; end relocate