Merge pull request #28 from petros/fix-sound-file-typo

Fix game-over filename typo
This commit is contained in:
Brett Chalupa 2023-05-18 15:22:45 -04:00 committed by GitHub
commit 8f94198555
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}}