log instead of printf

This commit is contained in:
Samuliak 2024-11-15 17:32:29 +01:00
parent 38cbd3e03a
commit a72136419c
No known key found for this signature in database
4 changed files with 11 additions and 11 deletions

View file

@ -468,7 +468,7 @@ void MetalPipelineCompiler::InitFromStateRender(const LatteFetchShader* fetchSha
layout->setStepFunction(MTL::VertexStepFunctionPerInstance);
else
{
debug_printf("unimplemented vertex fetch type %u\n", (uint32)fetchType.value());
cemuLog_log(LogType::Force, "unimplemented vertex fetch type {}", (uint32)fetchType.value());
cemu_assert(false);
}
}