Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-11-10 01:52:36 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2009-11-10 01:52:55 +0300
commit0a0c83fd0d1ad96d89e546ed28710f3ebc2d2c38 (patch)
treefe478e59f787fc987bea73c19a4b58ddf46ae99b /overlay
parent51f4bf3ad62c710853236b82f972e27274bb55d7 (diff)
Add overlay safety checks for 11x too
Diffstat (limited to 'overlay')
-rw-r--r--overlay/lib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlay/lib.cpp b/overlay/lib.cpp
index a31b5c241..d0b5ee26b 100644
--- a/overlay/lib.cpp
+++ b/overlay/lib.cpp
@@ -502,7 +502,7 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE, DWORD fdwReason, LPVOID) {
char *p = strrchr(procname, '\\');
if (p) {
- if (_stricmp(p+1, "mumble.exe")==0)
+ if ((_stricmp(p+1, "mumble.exe")==0) || (_stricmp(p+1, "mumble11x.exe")==0))
bMumble = TRUE;
int i =0;
while (blacklist[i]) {