libobs: Fix missing pair of GS_DEBUG_MARKER

The conditional branch added by 4fe6803fe resulted GS_DEBUG_MARKER_END
is not called when the branch condition is failed.
master
Norihiro Kamae 2022-08-07 08:26:59 +09:00 committed by Jim
parent e08632328d
commit c42047cb68
1 changed files with 2 additions and 2 deletions

View File

@ -250,10 +250,10 @@ void render_display(struct obs_display *display)
render_display_end();
GS_DEBUG_MARKER_END();
gs_present();
}
GS_DEBUG_MARKER_END();
}
void obs_display_set_enabled(obs_display_t *display, bool enable)