mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Merge pull request #512 from NerduMiner/camservice-fix
Index with iterator value rather than getSingleIndex() in CAMService::startCapture
This commit is contained in:
commit
2cf4563533
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