mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-15 17:33:03 +00:00
chore: use namespace for FileUtils
This commit is contained in:
@@ -23,7 +23,7 @@ void BinOutput::AlignToFour(const char value) const
|
||||
const auto offset = m_stream.tellp();
|
||||
if (offset % 4 > 0)
|
||||
{
|
||||
const uint32_t alignmentValue = FileUtils::MakeMagic32(value, value, value, value);
|
||||
const uint32_t alignmentValue = utils::MakeMagic32(value, value, value, value);
|
||||
Write(&alignmentValue, 4u - (offset % 4u));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user