Skip to content

Commit

Permalink
Our enum'd serial was missing freenect prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
SoylentGraham committed Mar 31, 2021
1 parent 0561734 commit 684fe63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Freenect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ void Freenect::EnumDeviceNames(std::function<void(const std::string&)> Enum)

std::function<void(const std::string&)> EnumDeviceSerial = [&](const std::string& Serial)
{
Enum( Serial );
Enum( DeviceName_Prefix+Serial );
};

Freenect.EnumDevices( EnumDeviceSerial );
Expand Down

0 comments on commit 684fe63

Please sign in to comment.