Skip to content

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
  • Loading branch information
CardealRusso authored Oct 19, 2024
1 parent 251c697 commit 237536b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/mousebuttons-c/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
#include <stdio.h>
#include <string.h>

#define W 320
#define H 240

static int run() {
struct fenster f = {.title = "Mouse Buttons",.width = W,.height = H,};
struct fenster f = {.title = "Mouse Buttons",.width = 320,.height = 240,};
fenster_open(&f);
while (fenster_loop(&f) == 0) {
for (int i = 0; i < f.width; i++) {
Expand Down

0 comments on commit 237536b

Please sign in to comment.