fix(linux): increase iggy render-target budget to 64mb

This commit is contained in:
MatthewBeshay 2026-03-29 11:19:28 +11:00 committed by Tropical
parent f499eaee9c
commit b5b4fc34fe

View file

@ -48,7 +48,7 @@ void ConsoleUIController::init(S32 w, S32 h) {
gdraw_GL_SetResourceLimits(GDRAW_GL_RESOURCE_texture, 5000,
128 * 1024 * 1024);
gdraw_GL_SetResourceLimits(GDRAW_GL_RESOURCE_rendertarget, 10,
32 * 1024 * 1024);
64 * 1024 * 1024);
IggySetGDraw(gdraw_funcs);
#endif