Skip to content

Commit

Permalink
revert instruction in to_rgba
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGuarracino committed Feb 7, 2024
1 parent eb4389f commit d46016f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/atomic_image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ std::string to_rgba(const color_t& c) {
ss << (int)c.c.r << ",";
ss << (int)c.c.g << ",";
ss << (int)c.c.b << ",";
ss << (int)1 << ")";
ss << (int)c.c.a << ")";
return ss.str();
}

Expand Down

0 comments on commit d46016f

Please sign in to comment.