From 8737ea8cc7b672ac9c3f9c6e60dbba3b5031f27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 14 Mar 2020 02:36:31 +0100 Subject: [PATCH] Pygame --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 002a1b8..54e56da 100644 --- a/README.md +++ b/README.md @@ -2983,7 +2983,7 @@ pg.draw.ellipse(, color, ) ### Sound ```python - = pg.mixer.Sound('') # Loads a sound file. + = pg.mixer.Sound('') # Loads the WAV file. .play() # Starts playing the sound. ``` diff --git a/index.html b/index.html index 6d025f5..c6655ad 100644 --- a/index.html +++ b/index.html @@ -2531,7 +2531,7 @@ pg.draw.ellipse(<Surf>, color, <Rect>) <Surf> = <Font>.render(text, antialias, color, background=None) -

Sound

<Sound> = pg.mixer.Sound('<path>')              # Loads a sound file.
+

Sound

<Sound> = pg.mixer.Sound('<path>')              # Loads the WAV file.
 <Sound>.play()                                  # Starts playing the sound.