Skip to content

Commit 38ea210

Browse files
Fixes corrupt savefile issue with fusion quiz + update to v5.3.0.7
1 parent d38c3f6 commit 38ea210

16 files changed

+12
-5
lines changed

Data/Actors.rxdata

0 Bytes
Binary file not shown.

Data/Animations.rxdata

0 Bytes
Binary file not shown.

Data/Armors.rxdata

0 Bytes
Binary file not shown.

Data/CommonEvents.rxdata

0 Bytes
Binary file not shown.

Data/Enemies.rxdata

0 Bytes
Binary file not shown.

Data/Items.rxdata

0 Bytes
Binary file not shown.

Data/Map247.rxdata

52 Bytes
Binary file not shown.

Data/MapInfos.rxdata

0 Bytes
Binary file not shown.

Data/Scripts/001_Settings.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Settings
77
# The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format.
88
GAME_VERSION = '5.0.0'
9-
GAME_VERSION_NUMBER = "5.3.0.6"
9+
GAME_VERSION_NUMBER = "5.3.0.7"
1010

1111
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
1212
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18

Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,14 @@ def pbStartSceneBrief(species) # For standalone access, shows first page only
113113
@sprites["infosprite"].x = 104
114114
@sprites["infosprite"].y = 136
115115
@sprites["overlay"] = BitmapSprite.new(Graphics.width,Graphics.height,@viewport)
116-
pbSetSystemFont(@sprites["overlay"].bitmap)
117-
pbUpdateDummyPokemon
118-
drawPage(@page)
116+
117+
118+
119+
pbSetSystemFont(@sprites["overlay"].bitmap)
120+
pbUpdateDummyPokemon
121+
drawPage(@page)
122+
sprite_bitmap= @sprites["infosprite"].getBitmap
123+
119124
pbFadeInAndShow(@sprites) { pbUpdate }
120125
end
121126

0 commit comments

Comments
 (0)