mirror of
https://github.com/lubosz/overte.git
synced 2025-04-08 07:22:43 +02:00
fix variable name typo
This commit is contained in:
parent
9eecd3cb80
commit
3f1944eb8a
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ void PickCacheOptimizer<T>::update(std::unordered_map<uint32_t, std::shared_ptr<
|
|||
uint32_t& nextToUpdate, uint64_t expiry, bool shouldPickHUD) {
|
||||
PickCache results;
|
||||
const uint32_t INVALID_PICK_ID = 0;
|
||||
auto iter = picks.begin();
|
||||
auto itr = picks.begin();
|
||||
if (nextToUpdate != INVALID_PICK_ID) {
|
||||
itr = picks.find(nextToUpdate);
|
||||
if (itr == picks.end()) {
|
||||
|
|
Loading…
Reference in a new issue