mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
st/gui: Fix warning by using safe casts
This commit is contained in:
parent
6fc9bef385
commit
41927e802c
|
@ -13,6 +13,7 @@
|
|||
#include "util/u_logging.h"
|
||||
|
||||
#include "math/m_api.h"
|
||||
#include "math/m_vec2.h"
|
||||
|
||||
#include "gui_common.h"
|
||||
#include "gui_imgui.h"
|
||||
|
@ -141,13 +142,13 @@ handle_input(struct r_remote_controller_data *d)
|
|||
touched = false;
|
||||
d->thumbstick_click = handle_downable_button("Thumbstick Click");
|
||||
touched |= igIsItemHovered(ImGuiHoveredFlags_RectOnly);
|
||||
igSliderFloat2("Thumbstick", &d->thumbstick.x, -1, 1, "%.2f", 0);
|
||||
igSliderFloat2("Thumbstick", *m_vec2_ptr_to_float_arr_ptr(&d->thumbstick), -1, 1, "%.2f", 0);
|
||||
touched |= igIsItemHovered(ImGuiHoveredFlags_RectOnly);
|
||||
d->thumbstick_touch = touched;
|
||||
|
||||
// Trackpad
|
||||
touched = false;
|
||||
igSliderFloat2("Trackpad", &d->trackpad.x, -1, 1, "%.2f", 0);
|
||||
igSliderFloat2("Trackpad", *m_vec2_ptr_to_float_arr_ptr(&d->trackpad), -1, 1, "%.2f", 0);
|
||||
touched |= igIsItemHovered(ImGuiHoveredFlags_RectOnly);
|
||||
igSliderFloat("Trackpad Force", &d->trackpad_force.x, 0, 1, "%.2f", 0);
|
||||
touched |= igIsItemHovered(ImGuiHoveredFlags_RectOnly);
|
||||
|
|
Loading…
Reference in a new issue