Skip to content

Commit

Permalink
dev(unrealengine): fix shader logging
Browse files Browse the repository at this point in the history
  • Loading branch information
clshortfuse committed Dec 31, 2024
1 parent a240d34 commit 15f4f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/games/unrealengine/addon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ std::unordered_set<std::uint32_t> drawn_shaders;
drawn_shaders.emplace(value); \
reshade::log::message( \
reshade::log::level::debug, \
std::format("Replaced 0x{:08}", value).c_str()); \
std::format("Replaced 0x{:08x}", value).c_str()); \
}, \
}, \
}
Expand Down

0 comments on commit 15f4f0b

Please sign in to comment.