diff options
| author | Marie <marie@kaifa.ch> | 2024-01-11 11:43:20 +0100 |
|---|---|---|
| committer | Marie <marie@kaifa.ch> | 2024-01-11 11:43:20 +0100 |
| commit | bbdc4e77893b359985151f65b342773bc7378b76 (patch) | |
| tree | e05f1f1d3d0f48cb1208cd7c93ab6107151ac968 /packages/frontend/src/scripts/sound.ts | |
| parent | merge: upstream (diff) | |
| parent | feat: ranking system of bubble game (diff) | |
| download | sharkey-bbdc4e77893b359985151f65b342773bc7378b76.tar.gz sharkey-bbdc4e77893b359985151f65b342773bc7378b76.tar.bz2 sharkey-bbdc4e77893b359985151f65b342773bc7378b76.zip | |
merge: upstream
Diffstat (limited to 'packages/frontend/src/scripts/sound.ts')
| -rw-r--r-- | packages/frontend/src/scripts/sound.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/frontend/src/scripts/sound.ts b/packages/frontend/src/scripts/sound.ts index 05c8977ecf..9c74a8b870 100644 --- a/packages/frontend/src/scripts/sound.ts +++ b/packages/frontend/src/scripts/sound.ts @@ -92,7 +92,6 @@ export type OperationType = typeof operationTypes[number]; * @param options `useCache`: デフォルトは`true` 一度再生した音声はキャッシュする */ export async function loadAudio(url: string, options?: { useCache?: boolean; }) { - if (_DEV_) console.log('loading audio. opts:', options); // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition if (ctx == null) { ctx = new AudioContext(); |