Skip to content

Commit

Permalink
fix: regen against stergiotis/boxer@8150154
Browse files Browse the repository at this point in the history
  • Loading branch information
stergiotis committed Jul 28, 2024
1 parent dd0baaa commit b82cc03
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions common/src/binding/imgui/dispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ if(l > 0) {
auto font_ptr = (ImFont*)fontPtr;
if(font_ptr == nullptr) {
if(ImGui::GetIO().Fonts == nullptr) {
return;
return;
}
font_ptr = ImGui::GetIO().Fonts->Fonts[0];
if(font_ptr == nullptr) {
Expand Down Expand Up @@ -3080,7 +3080,8 @@ case 0x000000b8:
bool r;
bool p_open;
{
auto r = ImGui::Begin(name, &p_open, flags);
p_open = true; /* see issue #5 */
auto r = ImGui::Begin(name, &p_open, flags);
sendEmptyString();
sendValue<bool>(r);
sendValue<bool>(p_open);
Expand Down Expand Up @@ -4870,7 +4871,8 @@ case 0x0000015c:
bool r;
bool p_open;
{
auto r = ImGui::BeginPopupModal(name, &p_open, flags);
p_open = true; /* see issue #5 */
auto r = ImGui::BeginPopupModal(name, &p_open, flags);
sendEmptyString();
sendValue<bool>(r);
sendValue<bool>(p_open);
Expand Down Expand Up @@ -5487,7 +5489,8 @@ case 0x00000193:
bool r;
bool p_open;
{
auto r = ImGui::BeginTabItem(label, &p_open, flags);
p_open = true; /* see issue #5 */
auto r = ImGui::BeginTabItem(label, &p_open, flags);
sendEmptyString();
sendValue<bool>(r);
sendValue<bool>(p_open);
Expand Down

0 comments on commit b82cc03

Please sign in to comment.