diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-11 13:31:51 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-11 13:31:51 +0200 |
| commit | 74e8b2f3b70545a0afd81be6bd4a391dbf5529ae (patch) | |
| tree | 9b7a0ad3e956e007b83b2d952e0400e057b50f5e /main.c | |
| parent | a0dda3a3e12c34d2d8cf6a09b25944d176aa134e (diff) | |
| download | bidi-74e8b2f3b70545a0afd81be6bd4a391dbf5529ae.tar.gz | |
Disabled window resizing
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ static int l_open_window(lua_State *L) { int width = luaL_checknumber(L, 1); int height = luaL_checknumber(L, 2); const char *title = luaL_checkstring(L, 3); - SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_VSYNC_HINT | FLAG_WINDOW_HIGHDPI); + SetConfigFlags(FLAG_VSYNC_HINT | FLAG_WINDOW_HIGHDPI); InitWindow(width, height, title); ctx.font_size = FONT_IMPORT_SIZE; |
