2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-22 02:11:48 +00:00

chore: fix compilation error on linux for techniqueset debug mode

This commit is contained in:
Jan Laupetin
2025-12-19 15:42:51 +01:00
parent 8740df8d6b
commit ffdbe955db

View File

@@ -40,7 +40,7 @@ namespace
{
for (auto i = 0u; i < sizeof(CommonTechnique::m_flags) * 8u; i++)
{
const auto mask = 1ui64 << i;
const auto mask = 1ull << i;
if (technique.m_flags & mask)
{
Indent();
@@ -63,7 +63,7 @@ namespace
#ifdef TECHSET_DEBUG
for (auto i = 0u; i < sizeof(CommonPass::m_sampler_flags) * 8u; i++)
{
const auto mask = 1ui64 << i;
const auto mask = 1ull << i;
if (pass.m_sampler_flags & mask)
{
Indent();