Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Allow to set animation off for fire dragon.
Browse files Browse the repository at this point in the history
  • Loading branch information
laqieer committed Jul 27, 2020
1 parent 388e215 commit 7f9d009
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lds/patch_allow_animation_off_for_fire_dragon.ld
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
. = 0x8052f18;
.rodata.disableFireDragonDetectionInBattleDataInitialization1 : {*(.rodata.disableFireDragonDetectionInBattleDataInitialization1)}
. = 0x8052f6e;
.rodata.disableFireDragonDetectionInBattleDataInitialization2 : {*(.rodata.disableFireDragonDetectionInBattleDataInitialization2)}
1 change: 1 addition & 0 deletions linkerscript
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ SECTIONS
INCLUDE ../lds/patch_expand_icon_amount.ld
INCLUDE ../lds/patch_unit_auto_level_weapon_rank_with_weapon_lock.ld
INCLUDE ../lds/patch_fix_map_sprite_overwrite_dialogue_portrait.ld
INCLUDE ../lds/patch_allow_animation_off_for_fire_dragon.ld
. = 0xE007400;
.bss.skill : {*/skill.*(.bss.g*)}
.bss.buff : {*/buff.*(.bss.*)}
Expand Down
4 changes: 4 additions & 0 deletions src/patch_allow_animation_off_for_fire_dragon.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Allow to turn off battle animation for fire dragon.

const unsigned short disableFireDragonDetectionInBattleDataInitialization1 = 0;
const unsigned short disableFireDragonDetectionInBattleDataInitialization2 = 0;

0 comments on commit 7f9d009

Please sign in to comment.