Skip to content

Commit

Permalink
Merge pull request #82100 from bitsawer/fix_shader_globals_override
Browse files Browse the repository at this point in the history
Fix ShaderGlobalsOverride property handling
  • Loading branch information
akien-mga committed Oct 11, 2023
2 parents dde7dee + 71e3236 commit 9e02dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/main/shader_globals_override.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ StringName *ShaderGlobalsOverride::_remap(const StringName &p_name) const {
if (p.begins_with("params/")) {
String q = p.replace_first("params/", "");
param_remaps[p] = q;
r = param_remaps.getptr(q);
r = param_remaps.getptr(p);
}
}

Expand Down

0 comments on commit 9e02dcd

Please sign in to comment.