Skip to content

Commit

Permalink
RT: Fix in SF6
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Apr 30, 2024
1 parent 1dccb38 commit 3ff3531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mods/Graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ void Graphics::setup_rt_component() {

const auto go_name = utility::re_string::get_view(game_object->name);

if ((!go_name.starts_with(L"Main") && !go_name.starts_with(L"main"))) {
if ((!go_name.starts_with(L"Main") && !go_name.starts_with(L"main")) && !go_name.contains(L"DefaultCamera")) {
return;
}

Expand Down

0 comments on commit 3ff3531

Please sign in to comment.