| 201 | } |
| 202 | |
| 203 | void LogError(ObjectError code, const utf8* text) override |
| 204 | { |
| 205 | _wasError = true; |
| 206 | |
| 207 | if (!String::isNullOrEmpty(text)) |
| 208 | { |
| 209 | Console::Error::WriteLine("[%s] Error (%d): %s", _identifier.c_str(), code, text); |
| 210 | } |
| 211 | } |
| 212 | }; |
| 213 | } // namespace OpenRCT2 |
| 214 |
no test coverage detected