Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Jan 6, 2022
1 parent a59e3af commit d811ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ReaFab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ static void ImGuiFrame()
for (int column = 1; column < 9; column++) {
ImGui_TableSetColumnIndex(ctx, column);
text = std::string("fx") + std::to_string(column);
if (fxIndices.size() > column - 1) {
if ((int)fxIndices.size() > column - 1) {
TrackFX_GetFXName(track, fxIndices[column - 1], bufOut, BUFSIZ);
text = text + std::string(": ");
text = text + std::string(bufOut);
Expand Down

0 comments on commit d811ef0

Please sign in to comment.