View Single Post
  #6  
Old 08-02-2015, 01:52 AM
Shendare
Dragon
 
Join Date: Apr 2009
Location: California
Posts: 814
Default

Through chatting, KK and I figured out that the code is trying to pass GetRunSpeed() as a float in the format string ("%f"), when it's actually an integer, and my Visual Studio 2013 is b0rking at that mismatch.

Changing that %f to %i in both query format strings fixes the problem. Too weird.
Reply With Quote