Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanis002 committed Oct 17, 2024
1 parent f32f540 commit 2057d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/code/z_camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ s32 Camera_QRegInit(void);
* runtime. If a small f32 is being stored as an s16, it is common to store that value 100 times larger than the
* original value. This is then scaled back down during runtime with the CAM_DATA_SCALED macro.
*/
#define CAM_DATA_SCALED(x) ((x) * 0.01f)
#define CAM_DATA_SCALED(x) ((x)*0.01f)

// Load the next value from camera read-only data stored in CameraModeValue
#define GET_NEXT_RO_DATA(values) ((values++)->val)
Expand Down

0 comments on commit 2057d86

Please sign in to comment.