Skip to content

Commit

Permalink
Merge branch 'hotfix-customeffects'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharparam committed Mar 28, 2015
2 parents f5b62ea + 85e8628 commit ca32f89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Corale.Colore/Core/Keyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ namespace Corale.Colore.Core
{
using System;
using System.Collections.Generic;
using System.Linq;

using Corale.Colore.Annotations;
using Corale.Colore.Razer.Keyboard;
Expand Down Expand Up @@ -73,7 +74,7 @@ private Keyboard()
CurrentEffectId = Guid.Empty;

// Initialize the color array
var names = Enum.GetNames(typeof(Key));
var names = Enum.GetNames(typeof(Key)).Where(n => n != "Invalid").ToArray();
_custom = new Custom[names.Length];
_keyIndexMapping = new Dictionary<Key, int>(names.Length);

Expand Down

2 comments on commit ca32f89

@sharpblade-ci
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Colore :: Release Build Build 54 outcome was FAILURE
Summary: Error message is logged (new); compilation error: Corale.Colore.sln (new) Build time: 0:0:18

@sharpblade-ci
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Colore :: Release Build Build 55 outcome was SUCCESS
Summary: Tests passed: 81 Build time: 0:1:48

Please sign in to comment.