Skip to content

Commit

Permalink
No multi-char, ok
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemirtingas committed Jul 6, 2024
1 parent 6f88df5 commit 8cbf2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rembhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace rtc {
RembHandler::RembHandler(std::function<void(unsigned int)> onRemb) : mOnRemb(onRemb) {}

void RembHandler::incoming(message_vector &messages, [[maybe_unused]] const message_callback &send) {
static uint32_t rembValue = makeEndianAgnosticValue('BMER');
static uint32_t rembValue = makeEndianAgnosticValue(0x424d4552); // BMER

for (const auto &message : messages) {
size_t offset = 0;
Expand Down

0 comments on commit 8cbf2b5

Please sign in to comment.