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:
authorbogie <priivet@gmail.com>2012-09-14 02:38:31 +0400
committerbogie <priivet@gmail.com>2012-09-14 02:38:31 +0400
commit2aa057d52eecb30a396c162f934a462895114a7c (patch)
tree6b3ac959416d31ded3f2a2caafcb27f18c5958c0 /plugins/bf3
parent2b9233c54857c73f13091aad2bb3f8810c6028d8 (diff)
accidentally switched top and front vector, has been fixed and tested with two people.
Diffstat (limited to 'plugins/bf3')
-rw-r--r--plugins/bf3/bf3.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/bf3/bf3.cpp b/plugins/bf3/bf3.cpp
index e24f74dd4..244bfab90 100644
--- a/plugins/bf3/bf3.cpp
+++ b/plugins/bf3/bf3.cpp
@@ -39,9 +39,9 @@ static BYTE *pmodule_bf3;
static BYTE* const state_ptr = (BYTE *) 0x0234A36C;
// Vector ptrs
-static BYTE* const avatar_pos_ptr = (BYTE *) 0x0234A340;
-static BYTE* const avatar_front_ptr = (BYTE *) 0x234A320;
-static BYTE* const avatar_top_ptr = (BYTE *) 0x234A330;
+static BYTE* const avatar_pos_ptr = (BYTE *) 0x0234A300;
+static BYTE* const avatar_front_ptr = (BYTE *) 0x234A330;
+static BYTE* const avatar_top_ptr = (BYTE *) 0x234A320;
// Context ptrs
static BYTE* const ipport_ptr = (BYTE *) 0x023344D0;