Skip to content

Commit

Permalink
Change '&&' to 'and'.
Browse files Browse the repository at this point in the history
  • Loading branch information
heinezen authored Dec 3, 2024
1 parent c42c9ec commit 1c8aee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libopenage/renderer/demo/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace openage::renderer::tests {
bool check_uniform_completeness(const std::vector<Renderable> &renderables) {
// Iterate over each renderable object
for (const auto &renderable : renderables) {
if (renderable.uniform && not renderable.uniform->is_complete()) {
if (renderable.uniform and not renderable.uniform->is_complete()) {
return false;
}
}
Expand Down

0 comments on commit 1c8aee0

Please sign in to comment.