From 6bb6df483af2877d13bf0b6e5f07869778f86bc2 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 22 Jul 2012 03:20:34 +0000 Subject: [PATCH] - Fixed: DSBarInfo::ScreenSizeChanged() must call its supermethod. SVN r3783 (trunk) --- src/g_shared/sbarinfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/g_shared/sbarinfo.cpp b/src/g_shared/sbarinfo.cpp index 1640899a2b..7e0667062b 100644 --- a/src/g_shared/sbarinfo.cpp +++ b/src/g_shared/sbarinfo.cpp @@ -993,6 +993,7 @@ public: void ScreenSizeChanged() { + Super::ScreenSizeChanged(); V_CalcCleanFacs(script->resW, script->resH, SCREENWIDTH, SCREENHEIGHT, &script->cleanX, &script->cleanY); }