OpenTTD Source
20241108-master-g80f628063a
|
Error reporting related functions. More...
#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_OPT__(,) __VA_ARGS__)) |
#define | FatalError(format_string, ...) FatalErrorI(fmt::format(FMT_STRING(format_string) __VA_OPT__(,) __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 133 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 112 of file openttd.cpp.