More warning fixes
This commit is contained in:
parent
f568253c51
commit
0345eb582b
19 changed files with 35 additions and 20 deletions
|
|
@ -276,7 +276,7 @@ void DeviceView::setController(RGBController * controller_ptr)
|
|||
}
|
||||
else if(controller->leds[color_idx].name == "Key: Space")
|
||||
{
|
||||
for(int map_idx2 = map_idx - 1; map_idx2 > led_y * map->width && map->map[map_idx2] == 0xFFFFFFFF; --map_idx2)
|
||||
for(unsigned int map_idx2 = map_idx - 1; map_idx2 > led_y * map->width && map->map[map_idx2] == 0xFFFFFFFF; --map_idx2)
|
||||
{
|
||||
led_pos[color_idx].matrix_x -= atom;
|
||||
led_pos[color_idx].matrix_w += atom;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue