Change "Wiimote" to "Wii Remote" in Logs

This commit is contained in:
Pringo
2016-11-03 17:58:28 -07:00
parent ab9f539233
commit 93bdab64fa
5 changed files with 21 additions and 21 deletions

View File

@ -41,7 +41,7 @@ public class Java_WiimoteAdapter
{
if (!manager.hasPermission(dev))
{
Log.warning("Requesting permission for Wiimote adapter");
Log.warning("Requesting permission for Wii Remote adapter");
Intent intent = new Intent();
PendingIntent pend_intent;
intent.setClass(NativeLibrary.sEmulationActivity, USBPermService.class);
@ -130,11 +130,11 @@ public class Java_WiimoteAdapter
{
for (int i = 0; i < MAX_WIIMOTES; ++i)
{
// One interface per Wiimote
// One interface per Wii Remote
usb_intf[i] = dev.getInterface(i);
usb_con.claimInterface(usb_intf[i], true);
// One endpoint per Wiimote. Input only
// One endpoint per Wii Remote. Input only
// Output reports go through the control channel.
usb_in[i] = usb_intf[i].getEndpoint(0);
Log.info("Interface " + i + " endpoint count:" + usb_intf[i].getEndpointCount());