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

@@ -33,7 +33,7 @@ class SlotMachineReel < BitmapSprite
@slipping = 0
@index = rand(@reel.length)
@images = AnimatedBitmap.new(_INTL("Graphics/Pictures/Slot Machine/images"))
@shading = AnimatedBitmap.new(_INTL("Graphics/Pictures/Slot Machine/ReelOverlay"))
@shading = AnimatedBitmap.new("Graphics/Pictures/Slot Machine/ReelOverlay")
update
end
@@ -88,7 +88,7 @@ class SlotMachineScore < BitmapSprite
@viewport = Viewport.new(x, y, 70, 22)
@viewport.z = 99999
super(70, 22, @viewport)
@numbers = AnimatedBitmap.new(_INTL("Graphics/Pictures/Slot Machine/numbers"))
@numbers = AnimatedBitmap.new("Graphics/Pictures/Slot Machine/numbers")
self.score = score
end