diff options
author | Sam Lantinga <slouken@libsdl.org> | 2002-01-18 18:14:03 +0000 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2002-01-18 18:14:03 +0000 |
commit | ab110067b70ae19f5493ec5c735e076f2bf476d1 (patch) | |
tree | 966eaea99246d51571eef05f34d8e2fa7f0d656f /test | |
parent | ca11fc6596f1868a28d873482a68a911b48b9eb5 (diff) |
Added QNX cleanups by Mike Gorchak (thanks!)
Diffstat (limited to 'test')
-rw-r--r-- | test/testvidinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testvidinfo.c b/test/testvidinfo.c index f630ee73a7..4ad7fff41b 100644 --- a/test/testvidinfo.c +++ b/test/testvidinfo.c @@ -35,7 +35,7 @@ int main(int argc, char *argv[]) } else { printf("Fullscreen video modes:\n"); for ( i=0; modes[i]; ++i ) { - printf("\t%dx%d\n", modes[i]->w, modes[i]->h); + printf("\t%dx%dx%d\n", modes[i]->w, modes[i]->h, info->vfmt->BitsPerPixel); } } if ( info->wm_available ) { |