Skip to content

Commit

Permalink
fix character / prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoconlechuga committed Aug 25, 2019
1 parent ab8f526 commit 66af118
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/installer.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 66af118

Please sign in to comment.