# HG changeset patch # User Sam Lantinga # Date 1004847485 0 # Node ID 153f221b7d484aedc94f0513c86192e8fbaf8517 # Parent 24878c14b391ef7c7d3a4ca4e102e04035c9aaff Give more info about the current video mode diff -r 24878c14b391 -r 153f221b7d48 test/testwin.c --- a/test/testwin.c Sat Nov 03 17:03:16 2001 +0000 +++ b/test/testwin.c Sun Nov 04 04:18:05 2001 +0000 @@ -335,7 +335,8 @@ 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");