mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 18:15:14 +00:00
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:
parent
fd03fe2b5a
commit
b7d7040dc0
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user