Fix game-over filename typo

This commit is contained in:
Petros Amoiridis 2023-05-18 20:45:58 +03:00
parent 9d7fae7aff
commit a6ca7cd2f4
No known key found for this signature in database

View file

@ -52,7 +52,7 @@ We'll kick things off by starting the music track on the first tick at the top o
If you've got the files in the right place and start your game, you'll hear the music play.
Above our check for whether or not the game is over, when the timer is 0, let's play `game-over.ogg` and pause the music:
Above our check for whether or not the game is over, when the timer is 0, let's play `game-over.wav` and pause the music:
``` ruby
{{#include code/chapter_08/01_sound/app/main.rb:122:132}}