|
OpenTTD Source
14.0-beta1
|
#include "3rdparty/fmt/format.h"Go to the source code of this file.
Macros | |
| #define | UserError(format_string, ...) UserErrorI(fmt::format(FMT_STRING(format_string), ## __VA_ARGS__)) |
| #define | FatalError(format_string, ...) FatalErrorI(fmt::format(FMT_STRING(format_string), ## __VA_ARGS__)) |
Functions | |
| void | UserErrorI (const std::string &str) |
| Error handling for fatal user errors. More... | |
| void | FatalErrorI (const std::string &str) |
| Error handling for fatal non-user errors. More... | |
Error reporting related functions.
Definition in file error_func.h.
| void FatalErrorI | ( | const std::string & | msg | ) |
Error handling for fatal non-user errors.
| str | the string to print. |
Error handling for fatal non-user errors.
| s | Format string. |
Definition at line 135 of file openttd.cpp.
References VideoDriver::GetInstance().
| void UserErrorI | ( | const std::string & | str | ) |
Error handling for fatal user errors.
| str | the string to print. |
Definition at line 114 of file openttd.cpp.