Skip to content

Commit

Permalink
remove whitespaces in column names
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmagne authored Jul 2, 2024
1 parent b41f619 commit 34d8d99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/input_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ void gamepad_manager::setup_file()
{
m_file << "time,";
for (int i = 0; i < SDL_GAMEPAD_BUTTON_TOUCHPAD; ++i) {
m_file << button_to_string((SDL_GamepadButton)i) << ", ";
m_file << button_to_string((SDL_GamepadButton)i) << ",";
}
for (int i = 0; i < SDL_GAMEPAD_AXIS_MAX; ++i) {
m_file << axis_to_string((SDL_GamepadAxis)i) << ", ";
m_file << axis_to_string((SDL_GamepadAxis)i) << ",";
}
m_file << std::endl;
}
Expand Down Expand Up @@ -260,4 +260,4 @@ bool initialize_rec_source()
};
obs_register_source(&source_info);
return true;
}
}

0 comments on commit 34d8d99

Please sign in to comment.