1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Merge pull request #10908 from hpvb/fix-unused-variables

Fix unused variable warnings
This commit is contained in:
Rémi Verschelde
2017-09-12 12:55:53 +02:00
committed by GitHub
38 changed files with 70 additions and 210 deletions

View File

@@ -130,7 +130,6 @@ void ARVRServer::request_reference_frame(bool p_ignore_tilt, bool p_keep_height)
void ARVRServer::add_interface(const Ref<ARVRInterface> &p_interface) {
ERR_FAIL_COND(p_interface.is_null());
int idx = -1;
for (int i = 0; i < interfaces.size(); i++) {
if (interfaces[i] == p_interface) {