Small typo fix for avplayer assert

Found that this assert message was typoed when running Knack 2 through a debugger.
This commit is contained in:
Randomuser8219 2025-07-20 12:33:16 -07:00 committed by GitHub
parent fd03fe2b5a
commit b7d7040dc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,7 @@ public:
FrameBuffer(const SceAvPlayerMemAllocator& memory_replacement, u32 align, u32 size) noexcept
: m_memory_replacement(memory_replacement),
m_data(Allocate(memory_replacement, align, size)) {
ASSERT_MSG(m_data, "Could not allocated frame buffer.");
ASSERT_MSG(m_data, "Could not allocate frame buffer.");
}
~FrameBuffer() {