diff options
author | Hop311 <hop3114@gmail.com> | 2023-09-26 16:19:27 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-09-26 16:19:27 +0200 |
commit | f19c9fbbb8983371ebf79affadfcc45c44a28a43 (patch) | |
tree | f7bde3ca629159758054867bae750e02ce0612a3 /src/openvic-simulation/map/Map.cpp | |
parent | 63e462fceff981f79bcbae53e8d90fc59733e8c2 (diff) |
Expect modifier value + keys function
Diffstat (limited to 'src/openvic-simulation/map/Map.cpp')
-rw-r--r-- | src/openvic-simulation/map/Map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/map/Map.cpp b/src/openvic-simulation/map/Map.cpp index e29f104..7ecff39 100644 --- a/src/openvic-simulation/map/Map.cpp +++ b/src/openvic-simulation/map/Map.cpp @@ -406,7 +406,7 @@ bool Map::load_region_file(ast::NodeCPtr root) { static constexpr colour_t colour_at(uint8_t const* colour_data, int32_t idx) { /* colour_data is filled with BGR byte triplets - to get pixel idx as a * single RGB value, multiply idx by 3 to get the index of the corresponding - * triplet, then combine the bytes in reverse order. + * triplet, then combine the bytes in reverse order. */ idx *= 3; return (colour_data[idx + 2] << 16) | (colour_data[idx + 1] << 8) | colour_data[idx]; |