mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-08 20:39:47 -05:00
Define a Cache path on default
Cleanup OpenSpaceEngine Cleanup RenderEngine * ScreenSpaceRenderables are now owned by RenderEngine, rather than being shared_ptr Cleanup LogFactory
This commit is contained in:
@@ -53,13 +53,13 @@ void GuiJoystickComponent::render() {
|
||||
const JoystickInputStates& states =
|
||||
OsEng.navigationHandler().inputState().joystickInputStates();
|
||||
|
||||
for (int i = 0; i < states.size(); ++i) {
|
||||
for (size_t i = 0; i < states.size(); ++i) {
|
||||
const JoystickInputState& state = states[i];
|
||||
if (!state.isConnected) {
|
||||
continue;
|
||||
}
|
||||
|
||||
ImGui::Text("%s [%i]", state.name.c_str(), i);
|
||||
ImGui::Text("%s [%i]", state.name.c_str(), static_cast<int>(i));
|
||||
ImGui::Text("%s", "Axes");
|
||||
for (int j = 0; j < state.nAxes; ++j) {
|
||||
float f = state.axes[j];
|
||||
|
||||
Reference in New Issue
Block a user