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:
authorJan Klass <kissaki@posteo.de>2016-11-17 14:59:45 +0300
committerJan Klass <kissaki@posteo.de>2016-11-17 14:59:45 +0300
commite2ad9c05f0cff73defe5083e6728ab9b1af63ab9 (patch)
treee3882263e01ace81722863d84e86337e82b06114 /plugins/cod2
parent486381c95a5d83f61c47b8e43538c03f341cc8a5 (diff)
Fix 2643: Revert "Merge PR #2611: plugins: use the short form of peekProc"
This reverts commit e9c558ffdbc1501d63f3fd6d73578f6fd6611aa1, reversing changes made to ca2fd07b90746a17dba13963f7bdd54812c5d016. This is a quick-fix for crashing PA plugins. The intended change is still useful and planned to land later.
Diffstat (limited to 'plugins/cod2')
-rw-r--r--plugins/cod2/cod2.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/cod2/cod2.cpp b/plugins/cod2/cod2.cpp
index 393ff64c5..65b492e78 100644
--- a/plugins/cod2/cod2.cpp
+++ b/plugins/cod2/cod2.cpp
@@ -26,18 +26,18 @@ static int fetch(float *avatar_pos, float *avatar_front, float *avatar_top, floa
0x0151A110 float Vertical view (degrees) (=0 out-of-game)
0x0096B688 byte Magic value (0=ingame/out-of-game, 4=spectator)
*/
- ok = peekProc(0x0096B688, state);
+ ok = peekProc(0x0096B688, &state, 1);
if (! ok)
return false;
if (state == 4)
return true; // If this magic value is 4 we are spectating, so switch of PA
- ok = peekProc(0x01516608, avatar_pos[2]) && //Z
- peekProc(0x0151660C, avatar_pos[0]) && //X
- peekProc(0x01516610, avatar_pos[1]) && //Y
- peekProc(0x0151A114, viewHor) && //Hor
- peekProc(0x0151A110, viewVer); //Ver
+ ok = peekProc(0x01516608, avatar_pos+2, 4) && //Z
+ peekProc(0x0151660C, avatar_pos, 4) && //X
+ peekProc(0x01516610, avatar_pos+1, 4) && //Y
+ peekProc(0x0151A114, &viewHor, 4) && //Hor
+ peekProc(0x0151A110, &viewVer, 4); //Ver
if (! ok)
return false;