diff options
Diffstat (limited to 'include/expo.h')
-rw-r--r-- | include/expo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/expo.h b/include/expo.h index 42e934e3ff2..84dc77f771e 100644 --- a/include/expo.h +++ b/include/expo.h @@ -194,14 +194,14 @@ enum scene_obj_t { /** * struct scene_obj_bbox - Dimensions of an object * - * @x: x position, in pixels from left side - * @y: y position, in pixels from top + * @x0: x position, in pixels from left side + * @y0: y position, in pixels from top * @w: width, in pixels * @h: height, in pixels */ struct scene_obj_bbox { - int x; - int y; + int x0; + int y0; int w; int h; }; |