From 9ed3881b3b15c9d9a746f2485cfdbcbffb931853 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Tue, 18 Jan 2022 08:24:54 +0100 Subject: [PATCH] Skip indirect ringbuffer errors - Thermonuclear war achieved --- src/xenia/gpu/command_processor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/gpu/command_processor.cc b/src/xenia/gpu/command_processor.cc index bd2bf4de3..cdbfc8797 100644 --- a/src/xenia/gpu/command_processor.cc +++ b/src/xenia/gpu/command_processor.cc @@ -453,7 +453,7 @@ void CommandProcessor::ExecuteIndirectBuffer(uint32_t ptr, uint32_t count) { // Return up a level if we encounter a bad packet. XELOGE("**** INDIRECT RINGBUFFER: Failed to execute packet."); assert_always(); - break; + //break; } } while (reader.read_count());