From f33a7fd9f453b4539ff734ed9373f60ea9ac5dff Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 4 Nov 2001 04:18:05 +0000 Subject: [PATCH] Give more info about the current video mode --- test/testwin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/testwin.c b/test/testwin.c index cf60e1065..94d1989e7 100644 --- a/test/testwin.c +++ b/test/testwin.c @@ -335,7 +335,8 @@ int main(int argc, char *argv[]) w, h, desired_bpp, SDL_GetError()); exit(1); } - printf("Set %dx%dx%d mode\n", + printf("Set%s %dx%dx%d mode\n", + screen->flags & SDL_FULLSCREEN ? " fullscreen" : "", screen->w, screen->h, screen->format->BitsPerPixel); printf("(video surface located in %s memory)\n", (screen->flags&SDL_HWSURFACE) ? "video" : "system");