From de5b309e0f06e93a963e09ef13c369ae7deeccc9 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 25 Jul 2026 10:58:28 -0700 Subject: Port a game I wrote a long time ago to JS --- static/games/pong/pong.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'static/games/pong/pong.js') diff --git a/static/games/pong/pong.js b/static/games/pong/pong.js index b8bdc2d..bdf95ac 100644 --- a/static/games/pong/pong.js +++ b/static/games/pong/pong.js @@ -161,7 +161,7 @@ function updateCanvasSize() { canvas.height = window.innerHeight; } -const pingAudio = new Audio('/static/pong/ping.mp3'); +const pingAudio = new Audio('/static/games/pong/ping.mp3'); function ping() { pingAudio.pause(); -- cgit v1.3.1