[fix] fix cursor mapping error

This commit is contained in:
dijunkun
2024-09-13 16:04:19 +08:00
parent d246b7a04d
commit fed7c3b103
3 changed files with 5 additions and 5 deletions

View File

@@ -49,8 +49,8 @@ int MouseController::Init(int screen_width, int screen_height) {
int MouseController::Destroy() { return 0; }
int MouseController::SendCommand(RemoteAction remote_action) {
int mouse_pos_x = remote_action.m.x * screen_width_ / 1280;
int mouse_pos_y = remote_action.m.y * screen_height_ / 720;
int mouse_pos_x = remote_action.m.x;
int mouse_pos_y = remote_action.m.y;
if (remote_action.type == ControlType::mouse) {
struct input_event event;