Fixed error: Would crash often if only one foreground color.
the build was successful Details

This commit is contained in:
tastytea 2018-12-28 01:40:56 +01:00
parent f891679884
commit 211b0ba7b4
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.2) cmake_minimum_required (VERSION 3.2)
project(identiconpp project(identiconpp
VERSION 0.3.3 VERSION 0.3.4
LANGUAGES CXX LANGUAGES CXX
) )

View File

@ -133,7 +133,7 @@ Magick::Color Identiconpp::get_color(const uint16_t firstbit,
// a power of 2. // a power of 2.
if (bits > (_foreground.size() - 1)) if (bits > (_foreground.size() - 1))
{ {
bits -= (_foreground.size() - 1); bits -= _foreground.size();
} }
// Lookup und set color // Lookup und set color