summaryrefslogtreecommitdiffstats
path: root/sdl/pyramid.c
diff options
context:
space:
mode:
Diffstat (limited to 'sdl/pyramid.c')
-rw-r--r--sdl/pyramid.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sdl/pyramid.c b/sdl/pyramid.c
index 42c7a22..bc0fd7a 100644
--- a/sdl/pyramid.c
+++ b/sdl/pyramid.c
@@ -38,14 +38,14 @@ static void render(void);
/* global */
int program_running = 1;
-const int xres_w = 640;
-const int yres_w = 480;
-const int bpp_w = 32;
+const unsigned int xres_w = 640;
+const unsigned int yres_w = 480;
+const unsigned int bpp_w = 32;
+const unsigned int af_w = 8;
const char *window_caption = "Textured Pyramid";
const char *window_icon_path = "tux.png";
const unsigned int sdl_video_flags = SDL_OPENGL | SDL_RESIZABLE;
-
/* platform struct */
static struct
{