Skip to content

Commit

Permalink
Update signature of X11Driver method
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Jan 21, 2025
1 parent 159017c commit b605621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unix/d_x11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class X11Driver : public Driver
int get_key() override;
int key_cursor(int row, int col) override;
int key_pressed() override;
int wait_key_pressed(int timeout) override;
int wait_key_pressed(bool timeout) override;
void unget_key(int key) override;
void shell() override;
void set_video_mode(VideoInfo *mode) override;
Expand Down Expand Up @@ -2337,7 +2337,7 @@ int X11Driver::key_pressed()
return ch;
}

int X11Driver::wait_key_pressed(int timeout)
int X11Driver::wait_key_pressed(bool timeout)
{
return 0;
}
Expand Down

0 comments on commit b605621

Please sign in to comment.