Removed unused AudioServer::update function

This commit is contained in:
Marcelo Fernandez 2018-06-15 14:13:33 -03:00
parent 4c41f6c2ad
commit c8a5145a6d
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 */