Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9294 from leoetlino/fix-assert
Core: Fix an assertion that mistakenly uses a fmt format string
  • Loading branch information
JosJuice committed Nov 28, 2020
2 parents a9845e0 + c0f7f91 commit 01e0aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp
Expand Up @@ -611,7 +611,7 @@ void WiimoteDevice::ReceiveConfigurationReq(u8 ident, u8* data, u32 size)
break;

default:
DEBUG_ASSERT_MSG(IOS_WIIMOTE, 0, "Unknown Option: {:#04x}", options->type);
DEBUG_ASSERT_MSG(IOS_WIIMOTE, 0, "Unknown Option: 0x%02x", options->type);
break;
}

Expand Down

0 comments on commit 01e0aba

Please sign in to comment.