Replace Warning string concatenation by WarningFmt

This commit is contained in:
Lynix
2024-02-13 17:17:04 +01:00
parent ad5336eff7
commit 67904abd29
20 changed files with 44 additions and 33 deletions

View File

@@ -40,7 +40,7 @@ namespace Nz
typeMask <<= 1;
}
NazaraErrorFmt("failed to find a memory type suitable for typeBits: {0} and properties: 0x{1}", typeBits, NumberToString(properties, 16));
NazaraErrorFmt("failed to find a memory type suitable for typeBits: {0} and properties: {1:#x}", typeBits, properties);
return false;
}