summaryrefslogtreecommitdiffhomepage
path: root/src/sst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sst.c')
-rw-r--r--src/sst.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sst.c b/src/sst.c
index 392f540..fcf26c4 100644
--- a/src/sst.c
+++ b/src/sst.c
@@ -46,6 +46,8 @@ static int ifacever;
// exposing lib handles in general, probably.
void *clientlib = 0;
+bool sst_earlyloaded = false; // see deferinit() below
+
#ifdef _WIN32
extern long __ImageBase; // this is actually the PE header struct but don't care
#define ownhandle() ((void *)&__ImageBase)
@@ -244,6 +246,7 @@ static bool deferinit(void) {
// Portal 2 does away with the separate gameui library, so now we just call
// CEngineVGui::IsInitialized() which works everywhere.
if (VGuiIsInitialized(vgui)) return false;
+ sst_earlyloaded = true; // let other code know
if (!os_mprot(*(void ***)vgui + vtidx_VGuiConnect, sizeof(void *),
PAGE_READWRITE)) {
errmsg_warnsys("couldn't make CEngineVGui vtable writable for deferred "