Skip to content

Commit

Permalink
Fix typo in SIGNALFLOW_INPUT__* handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Jun 20, 2024
1 parent 43daadf commit 932ff15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/src/core/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ AudioGraphConfig::AudioGraphConfig()
}
if (getenv("SIGNALFLOW_INPUT_BUFFER_SIZE"))
{
this->output_buffer_size = atoi(getenv("SIGNALFLOW_INPUT_BUFFER_SIZE"));
this->input_buffer_size = atoi(getenv("SIGNALFLOW_INPUT_BUFFER_SIZE"));
}
if (getenv("SIGNALFLOW_OUTPUT_BUFFER_SIZE"))
{
this->output_buffer_size = atoi(getenv("SIGNALFLOW_OUTPUT_BUFFER_SIZE"));
}
if (getenv("SIGNALFLOW_INPUT_DEVICE_NAME"))
{
this->output_device_name = std::string(getenv("SIGNALFLOW_INPUT_DEVICE_NAME"));
this->input_device_name = std::string(getenv("SIGNALFLOW_INPUT_DEVICE_NAME"));
}
if (getenv("SIGNALFLOW_OUTPUT_BACKEND_NAME"))
{
Expand Down

0 comments on commit 932ff15

Please sign in to comment.