mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Index with iterator value in CAMService::startCapture rather than getSingleIndex()
The port may have a value of 3 in this function, which will cause a panic. getPortIndices() handles this case for us already, so the iterator vale is safe to use
This commit is contained in:
parent
9a50a57d32
commit
2f9d5e30b4
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ void CAMService::startCapture(u32 messagePointer) {
|
|||
|
||||
if (port.isValid()) {
|
||||
for (int i : port.getPortIndices()) {
|
||||
auto& event = ports[port.getSingleIndex()].receiveEvent;
|
||||
auto& event = ports[i].receiveEvent;
|
||||
|
||||
// Until we properly implement cameras, immediately signal the receive event
|
||||
if (event.has_value()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue