Remove UI resize call from UpdateAspectRatio

This commit is contained in:
Fayaz Shaikh 2026-03-03 23:21:42 -05:00
parent c4ed99810a
commit c8f0e8939b

View file

@ -100,10 +100,6 @@ static WINDOWPLACEMENT g_wpPrev = { sizeof(g_wpPrev) };
void UpdateAspectRatio(int width, int height)
{
g_iAspectRatio = (float)width / (float)height;
// printf("Window resized to: %d x %d, aspect ratio: %.2f\n", width, height, g_iAspectRatio);
// Update the UI components as well
ui.resize(width, height);
}
void DefineActions(void)