We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41f619 commit 34d8d99Copy full SHA for 34d8d99
src/input_source.cpp
@@ -111,10 +111,10 @@ void gamepad_manager::setup_file()
111
{
112
m_file << "time,";
113
for (int i = 0; i < SDL_GAMEPAD_BUTTON_TOUCHPAD; ++i) {
114
- m_file << button_to_string((SDL_GamepadButton)i) << ", ";
+ m_file << button_to_string((SDL_GamepadButton)i) << ",";
115
}
116
for (int i = 0; i < SDL_GAMEPAD_AXIS_MAX; ++i) {
117
- m_file << axis_to_string((SDL_GamepadAxis)i) << ", ";
+ m_file << axis_to_string((SDL_GamepadAxis)i) << ",";
118
119
m_file << std::endl;
120
@@ -260,4 +260,4 @@ bool initialize_rec_source()
260
};
261
obs_register_source(&source_info);
262
return true;
263
-}
+}
0 commit comments