Loading

Paste #pqgpnkoug

  1. (lldb) up 5
  2. openttd was compiled with optimization - stepping may behave oddly; variables may not be available.
  3. frame #5: 0x000000010014b185 openttd`RoadVehicle::GetMaxTrackSpeed(this=<unavailable>) const at roadveh.h:278:10 [opt]
  4.    275       */
  5.    276      inline uint16 GetMaxTrackSpeed() const
  6.    277      {
  7. -> 278          return GetRoadTypeInfo(GetRoadType(this->tile, GetRoadTramType(this->roadtype)))->max_speed;
  8.    279      }
  9.    280  
  10.    281      /**
  11. (lldb) print this->roadtype
  12. error: warning: Stopped in a C++ method, but 'this' isn't available; pretending we are in a generic context
  13. error: invalid use of 'this' outside of a non-static member function

Comments