Minor fixes
This commit is contained in:
parent
f90888261f
commit
4a8ebf869b
|
|
@ -9,7 +9,7 @@ namespace Nz
|
|||
{
|
||||
namespace Detail
|
||||
{
|
||||
bool SortByteArrayByCapacity(const ByteArray& byteArray, std::size_t refCapacity)
|
||||
inline bool SortByteArrayByCapacity(const ByteArray& byteArray, std::size_t refCapacity)
|
||||
{
|
||||
return refCapacity > byteArray.GetCapacity();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -641,7 +641,7 @@ namespace Nz
|
|||
ss << "Boolean(" << parameter.value.boolVal << ")";
|
||||
break;
|
||||
case ParameterType::Color:
|
||||
ss << "Color(" << parameter.value.colorVal << ")";
|
||||
ss << "Color(" << parameter.value.colorVal.ToString() << ")";
|
||||
break;
|
||||
case ParameterType::Double:
|
||||
ss << "Double(" << parameter.value.doubleVal << ")";
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ if has_config("tests") then
|
|||
set_kind("binary")
|
||||
|
||||
add_deps("NazaraCore", "NazaraNetwork", "NazaraPhysics2D", "NazaraShader")
|
||||
add_packages("catch2", "glslang", "spirv-tools")
|
||||
add_packages("catch2", "entt", "glslang", "spirv-tools")
|
||||
add_headerfiles("Engine/**.hpp")
|
||||
add_files("resources.cpp")
|
||||
add_files("Engine/**.cpp")
|
||||
|
|
|
|||
Loading…
Reference in New Issue