diff --git a/src/gui/doAction.cpp b/src/gui/doAction.cpp index 7e998af91..4db68d93b 100644 --- a/src/gui/doAction.cpp +++ b/src/gui/doAction.cpp @@ -1336,7 +1336,7 @@ void FurnaceGUI::doAction(int what) { MARK_MODIFIED; break; } - case GUI_ACTION_SAMPLE_XFADE_LOOP: + case GUI_ACTION_SAMPLE_CROSSFADE_LOOP: if (curSample<0 || curSample>=(int)e->song.sample.size()) break; openSampleCrossFadeOpt=true; break; diff --git a/src/gui/gui.h b/src/gui/gui.h index 704e3475b..857a6081a 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -722,7 +722,7 @@ enum FurnaceGUIActions { GUI_ACTION_SAMPLE_INVERT, GUI_ACTION_SAMPLE_SIGN, GUI_ACTION_SAMPLE_FILTER, - GUI_ACTION_SAMPLE_XFADE_LOOP, + GUI_ACTION_SAMPLE_CROSSFADE_LOOP, GUI_ACTION_SAMPLE_PREVIEW, GUI_ACTION_SAMPLE_STOP_PREVIEW, GUI_ACTION_SAMPLE_ZOOM_IN, diff --git a/src/gui/guiConst.cpp b/src/gui/guiConst.cpp index 561dcffe3..75decd374 100644 --- a/src/gui/guiConst.cpp +++ b/src/gui/guiConst.cpp @@ -743,7 +743,7 @@ const FurnaceGUIActionDef guiActions[GUI_ACTION_MAX]={ D("SAMPLE_INVERT", "Invert", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_t), D("SAMPLE_SIGN", "Signed/unsigned exchange", FURKMOD_CMD|SDLK_u), D("SAMPLE_FILTER", "Apply filter", FURKMOD_CMD|SDLK_f), - D("SAMPLE_XFADE_LOOP", "Crossfade loop points", NOT_AN_ACTION), + D("SAMPLE_CROSSFADE_LOOP", "Crossfade loop points", NOT_AN_ACTION), D("SAMPLE_PREVIEW", "Preview sample", 0), D("SAMPLE_STOP_PREVIEW", "Stop sample preview", 0), D("SAMPLE_ZOOM_IN", "Zoom in", FURKMOD_CMD|SDLK_EQUALS),