Skip to content

Commit

Permalink
keira: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
and3rson committed Mar 20, 2024
1 parent 605d0b9 commit 0d53eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/lib/lilka/src/lilka/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ inline int_vector_t Transform::transform(int_vector_t v) {
// Apply this transform to a vector
return int_vector_t{
static_cast<int32_t>(matrix[0][0] * v.x + matrix[0][1] * v.y),
static_cast<int32_t>(matrix[1][0] * v.x + matrix[1][1] * v.y)
static_cast<int32_t>(matrix[1][0] * v.x + matrix[1][1] * v.y),
};
}

Expand Down

0 comments on commit 0d53eb8

Please sign in to comment.