Skip to content

Commit

Permalink
#82 Dont Double Slash
Browse files Browse the repository at this point in the history
  • Loading branch information
Peyton-McKee committed Feb 27, 2024
1 parent 5dd3fa9 commit c712a5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NERODevelopment/src/controllers/configurationcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ void ConfigurationController::upButtonPressed() {

void ConfigurationController::enterButtonPressed() {
if (this->m_selectedConfigurationIndex == 3) {
this->m_model->sendMessage("/driver", this->m_driverName);
this->m_model->sendMessage("/system", this->m_systemName);
this->m_model->sendMessage("/location", this->m_locationName);
this->m_model->sendMessage("driver", this->m_driverName);
this->m_model->sendMessage("system", this->m_systemName);
this->m_model->sendMessage("location", this->m_locationName);
} else {
this->setIsKeyboardSelected(!this->m_isKeyboardSelected);
}
Expand Down

0 comments on commit c712a5a

Please sign in to comment.