Stopped various filenames being translatable when they don't need to be

This commit is contained in:
Maruno17
2022-06-16 13:29:48 +01:00
parent 3238ff817c
commit 3d8e22690d
7 changed files with 21 additions and 21 deletions

View File

@@ -172,8 +172,8 @@ class PokemonBag_Scene
end
end
@bag.last_viewed_pocket = lastpocket
@sliderbitmap = AnimatedBitmap.new(_INTL("Graphics/Pictures/Bag/icon_slider"))
@pocketbitmap = AnimatedBitmap.new(_INTL("Graphics/Pictures/Bag/icon_pocket"))
@sliderbitmap = AnimatedBitmap.new("Graphics/Pictures/Bag/icon_slider")
@pocketbitmap = AnimatedBitmap.new("Graphics/Pictures/Bag/icon_pocket")
@sprites = {}
@sprites["background"] = IconSprite.new(0, 0, @viewport)
@sprites["overlay"] = BitmapSprite.new(Graphics.width, Graphics.height, @viewport)