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:
authorTuck Therebelos <snares@users.sourceforge.net>2009-03-26 23:07:37 +0300
committerTuck Therebelos <snares@users.sourceforge.net>2009-03-26 23:07:37 +0300
commitefe233449fefe6c67c611aacc0acfe6c3f933e91 (patch)
treeefd9fa9eeafed9312f986a090960204dbeedf995 /plugins/l4d
parent35d6fd2678c6c56f1f23b8778d0c40dc66e83798 (diff)
Updated L4D for Build 3790
Diffstat (limited to 'plugins/l4d')
-rw-r--r--plugins/l4d/l4d.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/l4d/l4d.cpp b/plugins/l4d/l4d.cpp
index e54e55fef..ae7f20920 100644
--- a/plugins/l4d/l4d.cpp
+++ b/plugins/l4d/l4d.cpp
@@ -61,7 +61,7 @@ static bool peekProc(VOID *base, VOID *dest, SIZE_T len) {
}
static void about(HWND h) {
- ::MessageBox(h, L"Reads audio position information from Left 4 Dead (Build 3777)", L"Mumble L4D Plugin", MB_OK);
+ ::MessageBox(h, L"Reads audio position information from Left 4 Dead (Build 3790)", L"Mumble L4D Plugin", MB_OK);
}
static bool calcout(float *pos, float *rot, float *opos, float *front, float *top) {
@@ -112,8 +112,8 @@ static int trylock() {
if (!h)
return false;
- posptr = mod + 0x576240;
- rotptr = mod + 0x576240 + 24;
+ posptr = mod + 0x5772c0;
+ rotptr = mod + 0x5772c0 + 24;
float pos[3];
float rot[3];
@@ -152,7 +152,7 @@ static int fetch(float *pos, float *front, float *top) {
static MumblePlugin l4dplug = {
MUMBLE_PLUGIN_MAGIC,
- L"Left 4 Dead (Build 3777)",
+ L"Left 4 Dead (Build 3790)",
L"Left 4 Dead",
about,
NULL,