Skip to content

Commit 34d8d99

Browse files
authored
remove whitespaces in column names
1 parent b41f619 commit 34d8d99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/input_source.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ void gamepad_manager::setup_file()
111111
{
112112
m_file << "time,";
113113
for (int i = 0; i < SDL_GAMEPAD_BUTTON_TOUCHPAD; ++i) {
114-
m_file << button_to_string((SDL_GamepadButton)i) << ", ";
114+
m_file << button_to_string((SDL_GamepadButton)i) << ",";
115115
}
116116
for (int i = 0; i < SDL_GAMEPAD_AXIS_MAX; ++i) {
117-
m_file << axis_to_string((SDL_GamepadAxis)i) << ", ";
117+
m_file << axis_to_string((SDL_GamepadAxis)i) << ",";
118118
}
119119
m_file << std::endl;
120120
}
@@ -260,4 +260,4 @@ bool initialize_rec_source()
260260
};
261261
obs_register_source(&source_info);
262262
return true;
263-
}
263+
}

0 commit comments

Comments
 (0)