facepalm of the year

- Typo fix
- This check leads to forever relocating memory if size never exceeds capacity!
This commit is contained in:
kd-11 2019-06-18 21:48:50 +03:00 committed by kd-11
parent 2b9c315374
commit 1ee675e1f4

View File

@ -906,7 +906,7 @@ namespace rsx
void reserve(u32 size)
{
if (_capacity > size)
if (_capacity >= size)
return;
if (_data)