remove ding()

This commit is contained in:
2024-12-01 15:21:33 -06:00
parent 44881905cf
commit 6fb9350ceb

View File

@@ -68,7 +68,6 @@ void handle_one_event(const sf::Event&);
void redraw_everything(); void redraw_everything();
void Mouse_Pressed(const sf::Event&); void Mouse_Pressed(const sf::Event&);
void close_program(); void close_program();
void ding();
void adjust_windows(sf::RenderWindow&, sf::View&); void adjust_windows(sf::RenderWindow&, sf::View&);
sf::FloatRect compute_viewport(const sf::RenderWindow&, float ui_scale); sf::FloatRect compute_viewport(const sf::RenderWindow&, float ui_scale);
@@ -758,8 +757,3 @@ void Mouse_Pressed(const sf::Event & event) {
void close_program() { void close_program() {
} }
// TODO: Remove this function and replace it with beep() or play_sound() everywhere.
void ding() {
beep();
}