mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-02 02:52:40 +00:00
Update waveEdit.cpp
This commit is contained in:
parent
a51840b801
commit
0782e3af1d
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ void FurnaceGUI::drawWaveEdit() {
|
|||
int origData[256];
|
||||
// Copy original wave to temp buffer
|
||||
// If longer than 256 samples, return
|
||||
if (wave->len >= 256)
|
||||
if (wave->len > 256)
|
||||
{
|
||||
showError("ERROR : Wavetable longer than 256 samples!");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue