mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
Fix wrong printflike for FormattedError in Cheevos.
This commit is contained in:
parent
e4735bcf7a
commit
b8e85798a6
|
@ -85,7 +85,7 @@ static ALWAYS_INLINE CommonHostInterface* GetHostInterface()
|
||||||
return static_cast<CommonHostInterface*>(g_host_interface);
|
return static_cast<CommonHostInterface*>(g_host_interface);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void FormattedError(const char* format, ...) printflike(2, 3);
|
static void FormattedError(const char* format, ...) printflike(1, 2);
|
||||||
static void FormattedError(const char* format, ...)
|
static void FormattedError(const char* format, ...)
|
||||||
{
|
{
|
||||||
std::va_list ap;
|
std::va_list ap;
|
||||||
|
|
Loading…
Reference in a new issue