Merge pull request #19587 from marcelofg55/audioserver_update_remove

Removed unused AudioServer::update function
This commit is contained in:
Rémi Verschelde 2018-06-15 23:09:08 +02:00 committed by GitHub
commit db345b6554
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 7 deletions

View file

@ -1815,9 +1815,6 @@ bool Main::iteration() {
}
}
if (AudioServer::get_singleton())
AudioServer::get_singleton()->update();
idle_process_ticks = OS::get_singleton()->get_ticks_usec() - idle_begin;
idle_process_max = MAX(idle_process_ticks, idle_process_max);
uint64_t frame_time = OS::get_singleton()->get_ticks_usec() - ticks;

View file

@ -939,9 +939,6 @@ void AudioServer::finish() {
buses.clear();
}
void AudioServer::update() {
}
/* MISC config */
void AudioServer::lock() {

View file

@ -273,7 +273,6 @@ public:
virtual void init();
virtual void finish();
virtual void update();
virtual void load_default_bus_layout();
/* MISC config */