mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 08:10:50 +01:00
[apps/graph] Remove an undefined order
Change-Id: If73735421518adab5b1efe184e675fe2966d612b
This commit is contained in:
@@ -20,7 +20,8 @@ Graph::Function * Graph::FunctionStore::functionAtIndex(int i) {
|
||||
|
||||
void Graph::FunctionStore::pushFunction(const char * functionText) {
|
||||
assert(m_numberOfFunctions < k_maxNumberOfFunctions);
|
||||
m_functions[m_numberOfFunctions++] = Function(functionText, defaultColors[m_numberOfFunctions%numberOfDefaultColors]);
|
||||
m_functions[m_numberOfFunctions] = Function(functionText, defaultColors[m_numberOfFunctions%numberOfDefaultColors]);
|
||||
m_numberOfFunctions++;
|
||||
}
|
||||
|
||||
int Graph::FunctionStore::numberOfFunctions() {
|
||||
|
||||
Reference in New Issue
Block a user