Browse Source

Implemented multiple operation ids

remotes/origin/develop
Eric Bagus 11 months ago
parent
commit
1bd8af661a
  1. 6
      src/inputHandler.c

6
src/inputHandler.c

@ -11,6 +11,12 @@ int getOperationId(char symbol) {
return 3;
case '*':
return 4;
case '^':
return 5;
case '%':
return 6;
case '!':
return 7;
}
return id;
}
Loading…
Cancel
Save