Skip to content

Commit

Permalink
Add another parentesis to vi.h
Browse files Browse the repository at this point in the history
Co-authored-by: Giovanni Bajo <[email protected]>
  • Loading branch information
SpookyIluha and rasky authored Aug 25, 2023
1 parent f878d5b commit 5bcb89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vi.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ static const vi_config_t vi_config_presets[2][3] = {
#define VI_X_SCALE_SET(value) (( 1024*(value) + 320 ) / 640)

/** Under VI_Y_SCALE */
#define VI_Y_SCALE_SET(value) (( 1024*value + 120 ) / 240)
#define VI_Y_SCALE_SET(value) (( 1024*(value) + 120 ) / 240)

/**
* @brief Write a set of video registers to the VI
Expand Down

0 comments on commit 5bcb89f

Please sign in to comment.