From 3f74e82a22a88737e6a353fae5ae0181a3383037 Mon Sep 17 00:00:00 2001 From: KiritoDev <36680385+KiritoDv@users.noreply.github.com> Date: Wed, 11 May 2022 13:13:22 -0500 Subject: [PATCH] Fixed linux compilation --- libultraship/libultraship/GameOverlay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libultraship/libultraship/GameOverlay.cpp b/libultraship/libultraship/GameOverlay.cpp index f514599b1..f54bc7e1a 100644 --- a/libultraship/libultraship/GameOverlay.cpp +++ b/libultraship/libultraship/GameOverlay.cpp @@ -21,7 +21,7 @@ void Ship::GameOverlay::LoadFont(const std::string& name, const std::string& pat } } -void Ship::GameOverlay::TextDraw(float x, float y, bool shadow, const char* fmt, ...) IM_FMTARGS(5) { +void Ship::GameOverlay::TextDraw(float x, float y, bool shadow, const char* fmt, ...) { char buf[1024]; va_list args; va_start(args, fmt);