diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2026-07-25 10:58:28 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2026-07-25 10:59:30 -0700 |
| commit | de5b309e0f06e93a963e09ef13c369ae7deeccc9 (patch) | |
| tree | 87f0dec5650648640c6fc3119f32f7631b323f53 /static/games/pong | |
| parent | Move pong into games/ subdirectory (diff) | |
| download | roseh.moe-de5b309e0f06e93a963e09ef13c369ae7deeccc9.tar.zst | |
Port a game I wrote a long time ago to JS
Diffstat (limited to 'static/games/pong')
| -rw-r--r-- | static/games/pong/pong.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
