Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
roleoroleo committed Jan 8, 2024
1 parent a7ce0c2 commit 0af42ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/snapshot/snapshot/imggrabber.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@
#define H_LOW 360
#define W_FHD 1920
#define H_FHD 1080
#define W_3K 2304
#define H_3K 1296
#define W_3M 2304
#define H_3M 1296

typedef struct {
int sps_addr;
Expand Down Expand Up @@ -671,8 +671,8 @@ int main(int argc, char **argv)
width = W_FHD;
height = H_FHD;
} else {
width = W_3K;
height = H_3K;
width = W_3M;
height = H_3M;
}
}
if (debug) fprintf(stderr, "Resolution %d x %d\n", width, height);
Expand Down

0 comments on commit 0af42ff

Please sign in to comment.