From 1a02c7fd7381be22b5c862d916a3140029372074 Mon Sep 17 00:00:00 2001 From: Hanicef Date: Mon, 3 Jun 2024 12:56:44 +0000 Subject: [PATCH] Expose BASEVIDWIDTH and BASEVIDHEIGHT to Lua and SOC --- src/deh_tables.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/deh_tables.c b/src/deh_tables.c index c7c7c6040..f113f6b19 100644 --- a/src/deh_tables.c +++ b/src/deh_tables.c @@ -5804,6 +5804,10 @@ struct int_const_s const INT_CONST[] = { {"MB_SCROLLUP",MB_SCROLLUP}, {"MB_SCROLLDOWN",MB_SCROLLDOWN}, + // screen.h constants + {"BASEVIDWIDTH",BASEVIDWIDTH}, + {"BASEVIDHEIGHT",BASEVIDHEIGHT}, + {NULL,0} };