Skip to content

Commit

Permalink
swap 1 and 0
Browse files Browse the repository at this point in the history
  • Loading branch information
fearn-e committed Sep 2, 2023
1 parent ace62f9 commit 718ead6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/(content)/reference/mfcc/DropZero.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@
<canvas id="filter" bind:this={canvas} />
<div class="controls">
<Audio {...audioSpec} bind:audio on:play={play} on:pause={pause} />
<Button {...zero} on:click={() => dropzero(1)} />
<Button {...one} on:click={() => dropzero(0)} />
<Button {...zero} on:click={() => dropzero(0)} />
<Button {...one} on:click={() => dropzero(1)} />
</div>
</div>

Expand Down

0 comments on commit 718ead6

Please sign in to comment.