Browse Source

Experiment

Adding a break; before this part.
pull/3254/head
John 1 month ago
parent
commit
f017aa36de
  1. 1
      src/core/hle/service/nvnflinger/buffer_queue_producer.cpp

1
src/core/hle/service/nvnflinger/buffer_queue_producer.cpp

@ -981,6 +981,7 @@ void BufferQueueProducer::Transact(u32 code, std::span<const u8> parcel_data,
const s32 limit = std::min(request, valid_index);
parcel_out.Write(Status::NoError);
parcel_out.Write<s32>(limit);
break;
for (s32 i = 0; i < limit; ++i) {
parcel_out.Write(buffer_history_snapshot[i]);
}

Loading…
Cancel
Save