Skip to content

Commit

Permalink
Fix missing return value
Browse files Browse the repository at this point in the history
  • Loading branch information
sturnclaw committed Aug 22, 2024
1 parent 0b9a251 commit a2b7923
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lua/LuaPiGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3400,6 +3400,7 @@ static int l_pigui_table_set_bg_color(lua_State *l)
const int columnIndex = LuaPull<int>(l, 3, -1);

ImGui::TableSetBgColor(target, color, columnIndex);
return 0;
}

static Color4ub to_Color4ub(ImVec4 c)
Expand Down

0 comments on commit a2b7923

Please sign in to comment.