Fix all compiler warnings in the game code.

This commit is contained in:
2025-08-01 23:30:21 -04:00
parent afb9554eda
commit dfba555a05
5 changed files with 6 additions and 8 deletions

View File

@@ -246,11 +246,11 @@ static void handleFatalError(std::string what) {
}
}
void dialog_lost_focus(sf::RenderWindow& win) {
static void dialog_lost_focus(sf::RenderWindow&) {
setWindowFloating(mini_map(), false);
}
void dialog_gained_focus(sf::RenderWindow& win) {
static void dialog_gained_focus(sf::RenderWindow&) {
setWindowFloating(mini_map(), true);
if(map_visible){
makeFrontWindow(mini_map());