Set renderer scale.

This commit is contained in:
Ulysse Cura 2026-07-22 15:43:01 +02:00
parent 91709bfacc
commit af6ae7ae22
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,8 @@ inline void display_init(void)
printf("Couldn't create renderer : %s\n", SDL_GetError());
return;
}
SDL_RenderSetScale(renderer, RENDER_SCALE, RENDER_SCALE);
}
inline void display_update(void)