2 Commits

Author SHA1 Message Date
d7f52239f0 and again
All checks were successful
Linux arm64 / Build (push) Successful in 1m57s
2025-06-03 12:03:59 +02:00
72f4ea75ff fix again 2025-06-03 12:03:47 +02:00
2 changed files with 3 additions and 4 deletions

View File

@@ -9,12 +9,11 @@
static const int INFO_SECTIONS_COUNT = 5; static const int INFO_SECTIONS_COUNT = 5;
class InfoAppMenu : public AppMenu { class InfoAppMenu : public AppMenu {
private: private:
PlayerCursor playerCursor; PlayerCursor playerCursor;
sf::String sectionsName[INFO_SECTIONS_COUNT]; std::array<std::string, INFO_SECTIONS_COUNT> sectionsName;
sf::String sectionsContent[INFO_SECTIONS_COUNT]; std::array<std::string, INFO_SECTIONS_COUNT> sectionsContent;
public: public:
InfoAppMenu(std::shared_ptr<MenuStack> menuStack, std::shared_ptr<Settings> settings, std::shared_ptr<sf::RenderWindow> renderWindow); InfoAppMenu(std::shared_ptr<MenuStack> menuStack, std::shared_ptr<Settings> settings, std::shared_ptr<sf::RenderWindow> renderWindow);

View File

@@ -44,7 +44,7 @@ if is_mode("release") then
end end
if is_plat("mingw") then if is_plat("mingw") then
add_ldflags("-static-libstdc++") add_ldflags("-static-libstdc++", "-static")
end end