Skip to content

Commit

Permalink
Ultrawide (DD2): Remove cutscene pillarboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Apr 1, 2024
1 parent 44f6cfd commit 32bb18b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/mods/Graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,12 @@ bool Graphics::on_pre_gui_draw_element(REComponent* gui_element, void* primitive
game_object->shouldDraw = false;
return false;

#if defined(DD2)
case "ui012203"_fnv:
game_object->shouldDraw = false;
return false;
#endif

#if defined(RE4)
case "Gui_ui2510"_fnv: // Black bars in cutscenes
game_object->shouldDraw = false;
Expand Down

0 comments on commit 32bb18b

Please sign in to comment.