Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 authored and github-actions[bot] committed Aug 24, 2024
1 parent ca7ed22 commit 408aaf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/RE/N/NiColor.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace RE
constexpr NiColor(std::uint32_t a_hexValue) noexcept :
red(((a_hexValue >> 16) & 0xFF) / 255.0f),
green(((a_hexValue >> 8) & 0xFF) / 255.0f),
blue(((a_hexValue) & 0xFF) / 255.0f)
blue(((a_hexValue)&0xFF) / 255.0f)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/RE/B/BSVisit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace RE
BSVisitControl TraverseScenegraphCollision(NiAVObject* a_object, std::function<BSVisitControl(bhkNiCollisionObject*)> a_func)
{
auto result = BSVisitControl::kContinue;

if (!a_object) {
return result;
}
Expand Down

0 comments on commit 408aaf8

Please sign in to comment.