Skip to content

Commit

Permalink
Precise "HD" resolution that is required in order to run this game
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmaniak committed Aug 8, 2024
1 parent bb9ca39 commit 5d06263
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Make the game by learning C++ and random framework. In this case - SDL2.

### Running

- at least HD display resolution,
- at least 1280x720 display resolution,
- GNU/Linux or macOS.

### Development
Expand Down
2 changes: 1 addition & 1 deletion src/graphics.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ bool Graphics::InitWindow() {
return false;
}
if ((display_.w < MIN_DISPLAY_WIDTH) || (display_.h < MIN_DISPLAY_HEIGHT)) {
error::ShowBox("At least the HD screen resolution is required.");
error::ShowBox("At least the 1280x720 display resolution is required.");
return false;
}

Expand Down

0 comments on commit 5d06263

Please sign in to comment.