The open source OpenXR runtime

d/steamvr_lh: fix for loop type comparison warning

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2140>

+1 -1
+1 -1
src/xrt/drivers/steamvr_lh/steamvr_lh.cpp
··· 840 840 } 841 841 842 842 // Include the controllers 843 - for (int i = 0; i < MAX_CONTROLLERS; i++) { 843 + for (size_t i = 0; i < MAX_CONTROLLERS; i++) { 844 844 if (svrs->ctx->controller[i]) { 845 845 xsysd->xdevs[xsysd->xdev_count++] = svrs->ctx->controller[i]; 846 846 }