Skip to content

Commit

Permalink
[c++] Plane.hh: fix set_bg_rgb8() #2748
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Jan 31, 2024
1 parent d0ae404 commit 051a1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ncpp/Plane.hh
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ namespace ncpp
bool set_bg_rgb8 (int r, int g, int b, bool clipped = false) const NOEXCEPT_MAYBE
{
if (clipped) {
ncplane_set_fg_rgb8_clipped (plane, r, g, b);
ncplane_set_bg_rgb8_clipped (plane, r, g, b);
return true;
}

Expand Down

0 comments on commit 051a1b8

Please sign in to comment.