We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1daa2d7 + 06ccf1c commit 3a7683eCopy full SHA for 3a7683e
Metro/Metro_RP2350_Minesweeper/code.py
@@ -52,7 +52,7 @@
52
game_logic = GameLogic(display) # pylint: disable=no-value-for-parameter
53
54
# Load the spritesheet
55
-sprite_sheet = OnDiskBitmap("/bitmaps/game_sprites.bmp")
+sprite_sheet = OnDiskBitmap("bitmaps/game_sprites.bmp")
56
57
# Main group will hold all the visual layers
58
main_group = Group()
@@ -76,7 +76,7 @@
76
main_group.append(ui_group)
77
78
# Create the mouse graphics and add to the main group
79
-mouse_bmp = OnDiskBitmap("/bitmaps/mouse_cursor.bmp")
+mouse_bmp = OnDiskBitmap("bitmaps/mouse_cursor.bmp")
80
mouse_bmp.pixel_shader.make_transparent(0)
81
mouse_tg = TileGrid(mouse_bmp, pixel_shader=mouse_bmp.pixel_shader)
82
mouse_tg.x = display.width // 2
0 commit comments