Fix warnings in Mintaka keyboard controller

This commit is contained in:
Adam Honse 2024-11-25 23:37:17 -06:00
parent b213d3f37c
commit 51e38ade01
2 changed files with 7 additions and 6 deletions

View file

@ -9,8 +9,10 @@
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "MintakaKeyboardController.h"
#include <string.h>
#include "MintakaKeyboardController.h"
#include "StringUtils.h"
using namespace std::chrono_literals;
@ -29,8 +31,7 @@ MintakaKeyboardController::MintakaKeyboardController(hid_device* dev_handle, con
}
else
{
std::wstring return_wstring = serial_string;
serial_number = std::string(return_wstring.begin(), return_wstring.end());
serial_number = StringUtils::wstring_to_string(serial_string);
}
}

View file

@ -277,12 +277,12 @@ void RGBController_MintakaKeyboard::SetupZones()
| Create LEDs for the Matrix zone |
| Place keys in the layout to populate the matrix |
\*---------------------------------------------------------*/
for(size_t led_idx = 0; led_idx < new_zone.leds_count; led_idx++)
for(unsigned int led_idx = 0; led_idx < new_zone.leds_count; led_idx++)
{
led new_led;
new_led.name = new_kb.GetKeyNameAt(led_idx);
new_led.value = new_kb.GetKeyValueAt(led_idx);
new_led.name = new_kb.GetKeyNameAt(led_idx);
new_led.value = new_kb.GetKeyValueAt(led_idx);
leds.push_back(new_led);
}