From 78e15d489b200f4fe584078d4743a70feaaa8b3d Mon Sep 17 00:00:00 2001 From: NepDisk <16447892+NepDisk@users.noreply.github.com> Date: Thu, 1 Aug 2024 02:20:28 -0400 Subject: [PATCH] Expose BASEVIDWIDTH and BASEVIDHEIGHT to Lua and SOC https://git.do.srb2.org/STJr/SRB2/-/merge_requests/2468 --- src/deh_tables.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/deh_tables.c b/src/deh_tables.c index ab1661428..2b960c7b9 100644 --- a/src/deh_tables.c +++ b/src/deh_tables.c @@ -6637,6 +6637,10 @@ struct int_const_s const INT_CONST[] = { // followermode_t {"FOLLOWERMODE_FLOAT",FOLLOWERMODE_FLOAT}, {"FOLLOWERMODE_GROUND",FOLLOWERMODE_GROUND}, + + // screen.h constants + {"BASEVIDWIDTH", BASEVIDWIDTH}, + {"BASEVIDHEIGHT", BASEVIDHEIGHT}, {NULL,0} };