diff options
author | quou <quou@disroot.org> | 2024-09-27 16:23:13 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2024-09-27 16:23:13 +1000 |
commit | 9ca0a79e9cc784e14c3d8111ccb9ea1a22225472 (patch) | |
tree | f914c30100295942737f4cb3705989e4ee8f3c28 | |
parent | d412112fe1fcbef6d459f144516cd51b66f90612 (diff) |
fix scaling
-rw-r--r-- | plat.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -421,6 +421,7 @@ void app_end(App* a) { m2 = viewport_h; } while (m2 * s < m1) s++; /* lol */ + s = maxi(1, s - 1); app_rencpy(a, i, 0, 0, s); i->end = get_timer(); a->fps = 1000000000 / (i->end - i->begin); |