GS: Change GetValidSize warning to DevCon

This commit is contained in:
JordanTheToaster 2025-03-11 13:31:02 +00:00 committed by Ty
parent 08388d12d1
commit ec047c5972
1 changed files with 1 additions and 1 deletions

View File

@ -1034,7 +1034,7 @@ GSVector2i GSRendererHW::GetValidSize(const GSTextureCache::Source* tex)
constexpr int valid_max_size = 2047;
if ((width > valid_max_size) || (height > valid_max_size))
{
Console.Warning("Warning: GetValidSize out of bounds, X:%d Y:%d", width, height);
DevCon.Warning("Warning: GetValidSize out of bounds, X:%d Y:%d", width, height);
width = std::min(width, valid_max_size);
height = std::min(height, valid_max_size);
}