Kaynağa Gözat

update yes_no localization

SBird1337 6 yıl önce
ebeveyn
işleme
7bccaf3f56

+ 1
- 0
main.asm Dosyayı Görüntüle

@@ -61,6 +61,7 @@
61 61
 .include "patches/text_system.asm"
62 62
 
63 63
 .include "patches/game_engine/quick_hacks.asm"
64
+.include "patches/game_engine/localization.asm"
64 65
 
65 66
 //.include "battle_engine/patches/battle_hooks.s"
66 67
 

+ 2
- 0
patches/game_engine/localization.asm Dosyayı Görüntüle

@@ -0,0 +1,2 @@
1
+.org 0x081100A0 //YES NO box
2
+.word str_yes_no_box

+ 7
- 0
src/game_engine/localization.s Dosyayı Görüntüle

@@ -0,0 +1,7 @@
1
+.align 2
2
+.thumb
3
+
4
+.global str_yes_no_box
5
+str_yes_no_box:
6
+.string LAN_DE "Ja\nNein"
7
+.string LAN_EN "Yes\nNo"