JoltPhysics3D/Physics3DSystem: Cleanup test code

This commit is contained in:
SirLynix
2023-08-10 08:59:20 +02:00
parent 5484967498
commit 494a83e817
2 changed files with 12 additions and 32 deletions

View File

@@ -13,7 +13,6 @@
#include <Jolt/Core/JobSystemThreadPool.h>
#include <Jolt/Physics/PhysicsSettings.h>
#include <cstdarg>
#include <iostream>
#include <Nazara/JoltPhysics3D/Debug.hpp>
// Callback for traces, connect this to your own trace function if you have one
@@ -27,7 +26,7 @@ static void TraceImpl(const char* inFMT, ...)
va_end(list);
// Print to the TTY
std::cout << buffer << std::endl;
NazaraError(buffer);
}
namespace Nz