Fix compile error

This commit is contained in:
baldurk
2023-04-20 13:56:01 +01:00
parent c520ad0e2b
commit ba81d81c3a
+2 -2
View File
@@ -379,8 +379,8 @@ bytebuf ReplayOutput::DrawThumbnail(int32_t width, int32_t height, ResourceId te
{
bytebuf ret;
width = RDCMAX(width, 1U);
height = RDCMAX(height, 1U);
width = RDCMAX(width, 1);
height = RDCMAX(height, 1);
uint64_t key = (uint64_t(width) << 32) | height;
int idx = -1;