fixed typo

This commit is contained in:
Jonas Zeunert
2019-08-06 22:41:30 +02:00
parent 786b245f75
commit 6c7d1eeedb
2 changed files with 7 additions and 7 deletions

View File

@@ -127,10 +127,10 @@ void FlippRServer::initialize_output_driver()
try
{
lamp_config_stream.open(this->configs["lamp_config"].toString());
solenoid_config_stream.open(this->configs["solenoid_config"].toString());
sound_config_stream.open(this->configs["sound_config"].toString());
display_config_stream.open(this->configs["display_config"].toString());
lamp_config_stream.open(this->configs["lamp-config"].toString());
solenoid_config_stream.open(this->configs["solenoid-config"].toString());
sound_config_stream.open(this->configs["sound-config"].toString());
display_config_stream.open(this->configs["display-config"].toString());
}
catch(const std::exception& e)
{
@@ -151,8 +151,8 @@ void FlippRServer::initialize_input_driver()
try
{
input_config_stream.open(this->configs["input_config"].toString());
matrix_config_stream.open(this->configs["matrix_config"].toString());
input_config_stream.open(this->configs["input-config"].toString());
matrix_config_stream.open(this->configs["matrix-config"].toString());
}
catch(const std::exception& e)
{