Small typo fix for avplayer assert (#3283)

Found that this assert message was typoed when running Knack 2 through a debugger.
This commit is contained in:
Randomuser8219 2025-07-20 12:52:31 -07:00 committed by GitHub
parent fd03fe2b5a
commit 0706223aaf
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 FrameBuffer(const SceAvPlayerMemAllocator& memory_replacement, u32 align, u32 size) noexcept
: m_memory_replacement(memory_replacement), : m_memory_replacement(memory_replacement),
m_data(Allocate(memory_replacement, align, size)) { 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() { ~FrameBuffer() {