summaryrefslogtreecommitdiffstats
path: root/src/input_common/gcadapter/gc_adapter.cpp
diff options
context:
space:
mode:
authorAmeer <aj662@drexel.edu>2020-06-30 17:44:55 +0200
committerAmeer <aj662@drexel.edu>2020-06-30 17:44:55 +0200
commitdfdf87d844de6226fd043bb840de8525d8fbc0d1 (patch)
tree88e33b749d4262b13f04d1836e4f8bf43f0bd70b /src/input_common/gcadapter/gc_adapter.cpp
parentleft const auto&, comment punctuation. (diff)
downloadyuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar.gz
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar.bz2
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar.lz
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar.xz
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.tar.zst
yuzu-dfdf87d844de6226fd043bb840de8525d8fbc0d1.zip
Diffstat (limited to 'src/input_common/gcadapter/gc_adapter.cpp')
-rw-r--r--src/input_common/gcadapter/gc_adapter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/gcadapter/gc_adapter.cpp b/src/input_common/gcadapter/gc_adapter.cpp
index 774246bdf..b509b3e46 100644
--- a/src/input_common/gcadapter/gc_adapter.cpp
+++ b/src/input_common/gcadapter/gc_adapter.cpp
@@ -191,7 +191,7 @@ void Adapter::Setup() {
libusb_device** devs; // pointer to list of connected usb devices
- const int cnt = libusb_get_device_list(libusb_ctx, &devs); // get the list of devices
+ const std::size_t cnt = libusb_get_device_list(libusb_ctx, &devs); // get the list of devices
for (int i = 0; i < cnt; i++) {
if (CheckDeviceAccess(devs[i])) {