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>2010-02-25 18:15:15 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-02-25 18:15:15 +0300
commited39267dbb126bf4f047cd5c7252570fae70deaa (patch)
treefc10e3fe424483a3e34fb73cb2f2291bf2173803 /plugins/sto
parent6d11c22a49c4d48e4acf4e81f0dd5c383d372ff8 (diff)
Update STO plugin
Diffstat (limited to 'plugins/sto')
-rw-r--r--plugins/sto/sto.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/sto/sto.cpp b/plugins/sto/sto.cpp
index 601e7803d..e10faf14e 100644
--- a/plugins/sto/sto.cpp
+++ b/plugins/sto/sto.cpp
@@ -89,16 +89,16 @@ static int trylock(const std::multimap<std::wstring, unsigned long long int> &pi
return false;
char version[17];
- peekProc(pModule + 0x1612500, version);
+ peekProc(pModule + 0x1616080, version);
version[16]=0;
- if (memcmp(version, "ST.0.20100208b.4", sizeof(version)) == 0) {
+ if (memcmp(version, "ST.0.20100217c.3", sizeof(version)) == 0) {
#ifdef PLUGIN_DEBUG
printf("STO: WANTLINK %s\n", version);
#endif
- identptr = pModule + 0x16aec48;
- contextptr = pModule + 0x16ae804;
- posptr = pModule + 0x18be420;
+ contextptr = pModule + 0x16b2cd4;
+ identptr = contextptr + 0x444;
+ posptr = pModule + 0x18c2340;
return true;
} else {