macro HLE_DrawIndexedIndirect attempt

This commit is contained in:
xbzk 2026-04-09 22:40:10 -03:00
parent 11700cecee
commit 7b393be047

View file

@ -137,7 +137,7 @@ void HLE_DrawArraysIndirect::Fallback(Engines::Maxwell3D& maxwell3d, std::span<c
void HLE_DrawIndexedIndirect::Execute(Engines::Maxwell3D& maxwell3d, std::span<const u32> parameters, [[maybe_unused]] u32 method) {
auto topology = static_cast<Maxwell3D::Regs::PrimitiveTopology>(parameters[0]);
if (!maxwell3d.AnyParametersDirty() || !IsTopologySafe(topology)) {
if (!IsTopologySafe(topology)) {
Fallback(maxwell3d, parameters);
return;
}