medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b825d9fab38b6e43e54beff7822ea1ce57456044
parent f2c7b6a4affbaf21c6a37dac4b872c821599a8b1
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Fri Sep  2 15:42:30 -0700

Use 1024x768 resolution

Diffstat:
game.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/game.h b/game.h @@ -93,8 +93,8 @@ #include "keys.h" #include "stb_truetype.h" -const int WIDTH = 640; -const int HEIGHT = 480; +const int WIDTH = 1024; +const int HEIGHT = 768; const float NEAR_PLANE_DEPTH = 0.1f; const float FAR_PLANE_DEPTH = 10000.0f;