mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
0...1000 is the key range
This commit is contained in:
parent
56c4742f75
commit
3a83b3f66a
@ -8,8 +8,7 @@ DataStore::DataStore()
|
||||
this->registeredData = NULL;
|
||||
this->n_registeredData = 0;
|
||||
|
||||
/* Convention: Odd numbers for the clients */
|
||||
this->key_counter = 1;
|
||||
this->key_counter = 0;
|
||||
}
|
||||
|
||||
DataStore::~DataStore()
|
||||
@ -72,10 +71,10 @@ uint32_t DataStore::getNextKey()
|
||||
{
|
||||
uint32_t out = this->key_counter;
|
||||
|
||||
this->key_counter += 2;
|
||||
this->key_counter++;
|
||||
|
||||
if (this->key_counter > DATA_KEY_RANGE)
|
||||
this->key_counter = 1;
|
||||
if (this->key_counter >= DATA_KEY_RANGE)
|
||||
this->key_counter = 0;
|
||||
|
||||
return out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user