diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-06-15 14:13:33 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-06-15 14:13:33 -0300 |
commit | c8a5145a6def2ca5d9dbc3c03a599aaf1766718c (patch) | |
tree | 664f9648b52cb1fa31ab4aa86533e92a6eef7129 /main/main.cpp | |
parent | 4c41f6c2adb27103873e1ba495bddb8842a54b25 (diff) | |
download | redot-engine-c8a5145a6def2ca5d9dbc3c03a599aaf1766718c.tar.gz |
Removed unused AudioServer::update function
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/main/main.cpp b/main/main.cpp index 119d1ee345..f719830cbc 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -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; |