From 437a54486d561f3944fc25b963cf54f89e8cc501 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 18 Apr 2023 20:14:20 +0200 Subject: [PATCH] Fix typo in 'bf_write' --- r5dev/tier1/bitbuf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/tier1/bitbuf.cpp b/r5dev/tier1/bitbuf.cpp index 3c0e84f5..a269c2f2 100644 --- a/r5dev/tier1/bitbuf.cpp +++ b/r5dev/tier1/bitbuf.cpp @@ -513,7 +513,7 @@ void bf_write::WriteSBitLong(int data, int numbits) // Do we have a valid # of bits to encode with? Assert(numbits >= 1); - // Note: it does this wierdness here so it's bit-compatible with regular integer data in the buffer. + // Note: it does this weirdness here so it's bit-compatible with regular integer data in the buffer. // (Some old code writes direct integers right into the buffer). if (data < 0) {