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-12-02 01:18:33 +0300
committerTuck Therebelos <snares@users.sourceforge.net>2009-12-02 01:18:33 +0300
commit53fcb704215d12786fe5da258edf455320ebe890 (patch)
treefba943abc251c90698a6a4e9bc94d6611997ef9f /plugins/gmod
parent0cbf4196610df7c44d5edfe98126a1af42d0e19f (diff)
Gmod update
Diffstat (limited to 'plugins/gmod')
-rw-r--r--plugins/gmod/gmod.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/gmod/gmod.cpp b/plugins/gmod/gmod.cpp
index 867d65449..97c81d869 100644
--- a/plugins/gmod/gmod.cpp
+++ b/plugins/gmod/gmod.cpp
@@ -115,13 +115,13 @@ static int trylock() {
spawn state: client.dll+0x46ab34 (0 when at main menu, 2 when not spawned, 15 to 14 when spawned, byte)
*/
char sMagic[9];
- if (!peekProc(mod + 0x5ec370, sMagic, 9) || strncmp("garrysmod", sMagic, 9)!=0)
+ if (!peekProc(mod + 0x5F3A70, sMagic, 9) || strncmp("garrysmod", sMagic, 9)!=0)
return false;
// Remember addresses for later
- posptr = mod + 0x483fe0;
- rotptr = mod + 0x4733bc;
- stateptr = mod + 0x46ab34;
+ posptr = mod + 0x48B8D0;
+ rotptr = mod + 0x48B850;
+ stateptr = mod + 0x471B34;
float pos[3];
float rot[3];