Fix unused parameter

If you're going to stub a function, please remember to clean up its parameters as well.
This commit is contained in:
Gregory A Lundberg 2018-03-22 10:12:52 -05:00
parent 410398a70b
commit 812de972ac
No known key found for this signature in database
GPG key ID: 149484078AE8AE9E

View file

@ -501,10 +501,14 @@ void playsingle_controller::linger()
LOG_NG << "ending end-of-scenario linger\n";
}
#if 0
void playsingle_controller::end_turn_enable(bool enable)
{
//gui_->enable_menu("endturn", enable);
}
#else
void playsingle_controller::end_turn_enable(bool) {}
#endif
void playsingle_controller::after_human_turn()
{