Replace references to VisualServer in code comments with RenderingServer

VisualServer no longer exists in the `master` branch.
This commit is contained in:
Hugo Locurcio
2021-10-07 15:46:55 +02:00
parent 8afd2171d1
commit bcf4a56c74
13 changed files with 18 additions and 18 deletions

View File

@ -439,7 +439,7 @@ void EditorResourcePreview::stop() {
preview_sem.post();
while (!exited.is_set()) {
OS::get_singleton()->delay_usec(10000);
RenderingServer::get_singleton()->sync(); //sync pending stuff, as thread may be blocked on visual server
RenderingServer::get_singleton()->sync(); //sync pending stuff, as thread may be blocked on rendering server
}
thread.wait_to_finish();
}