| 76 | |
| 77 | #ifdef DEBUG_OVERLAYS_OUTPUT |
| 78 | std::string TextHandle::GetOverlayDebugInfo() |
| 79 | { |
| 80 | std::ostringstream out; |
| 81 | out << "Text Priority(" << std::hex << std::setw(16) << std::setfill('0') << GetPriority() << ") " << std::dec |
| 82 | << DebugPrint(GetOverlayID()); |
| 83 | return out.str(); |
| 84 | } |
| 85 | #endif |
| 86 | } // namespace df |
nothing calls this directly
no test coverage detected