From d8334548d7d22d3b548df2b8fea9128c9642e1d2 Mon Sep 17 00:00:00 2001 From: MaximZaitsev Date: Mon, 15 Aug 2016 12:50:00 +0300 Subject: [PATCH] switch double to int32 in location data --- proto/protofiles_sources/server_car/location.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/protofiles_sources/server_car/location.proto b/proto/protofiles_sources/server_car/location.proto index 20397312b10..c6566e71b0e 100644 --- a/proto/protofiles_sources/server_car/location.proto +++ b/proto/protofiles_sources/server_car/location.proto @@ -7,8 +7,8 @@ message LocationResponse { int32 code = 2; message LocationData { - double x = 1; - double y = 2; - double angle = 3; + int32 x = 1; + int32 y = 2; + int32 angle = 3; } }