1
0
mirror of synced 2024-11-24 15:00:12 +01:00

Add logging to Dirty Drivin

This commit is contained in:
Aaron M 2019-12-23 12:10:50 +13:00
parent 2b8510278f
commit bf2309a53d

View File

@ -18,6 +18,10 @@ void DirtyDrivin::FFBLoop(EffectConstants* constants, Helpers* helpers, EffectTr
float ff = helpers->ReadFloat32(0x886EC4, false); float ff = helpers->ReadFloat32(0x886EC4, false);
helpers->log("got value: ");
std::string ffs = std::to_string(ff);
helpers->log((char*)ffs.c_str());
if (ff > 0) if (ff > 0)
{ {
double percentForce = ff; double percentForce = ff;