Skip to content

Commit 3a7683e

Browse files
authored
Merge pull request #3102 from RetiredWizard/fruitjammines
Minesweeper Change to relative paths for Fruit Jam OS
2 parents 1daa2d7 + 06ccf1c commit 3a7683e

File tree

1 file changed

+2
-2
lines changed
  • Metro/Metro_RP2350_Minesweeper

1 file changed

+2
-2
lines changed

Metro/Metro_RP2350_Minesweeper/code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
game_logic = GameLogic(display) # pylint: disable=no-value-for-parameter
5353

5454
# Load the spritesheet
55-
sprite_sheet = OnDiskBitmap("/bitmaps/game_sprites.bmp")
55+
sprite_sheet = OnDiskBitmap("bitmaps/game_sprites.bmp")
5656

5757
# Main group will hold all the visual layers
5858
main_group = Group()
@@ -76,7 +76,7 @@
7676
main_group.append(ui_group)
7777

7878
# Create the mouse graphics and add to the main group
79-
mouse_bmp = OnDiskBitmap("/bitmaps/mouse_cursor.bmp")
79+
mouse_bmp = OnDiskBitmap("bitmaps/mouse_cursor.bmp")
8080
mouse_bmp.pixel_shader.make_transparent(0)
8181
mouse_tg = TileGrid(mouse_bmp, pixel_shader=mouse_bmp.pixel_shader)
8282
mouse_tg.x = display.width // 2

0 commit comments

Comments
 (0)