From 649d7d21303dfc7f73f0458a87ae4005c44b12c8 Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Sat, 2 Oct 2004 23:25:31 +0000 Subject: [PATCH] Remove warning about 32 bpp since it is no longer an issue --- zsnes/src/linux/sdllink.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/zsnes/src/linux/sdllink.c b/zsnes/src/linux/sdllink.c index 46bddbdb..322c9bfb 100644 --- a/zsnes/src/linux/sdllink.c +++ b/zsnes/src/linux/sdllink.c @@ -669,13 +669,6 @@ int saybitdepth() const SDL_VideoInfo *info; SDL_Init(SDL_INIT_VIDEO); info = SDL_GetVideoInfo(); - MyBitsPerPixel = info->vfmt->BitsPerPixel; - switch (MyBitsPerPixel) - { - case 0: printf("Cannot detect bitdepth. On fbcon and svgalib this is normal.\nTrying to force 16 bpp.\n\n"); break; - case 16: break; - default: printf("You are running in %d bpp, but ZSNES is forcing 16 bpp.\nYou may experience poor performance and/or crashing.\n\n", MyBitsPerPixel); break; - } return 0; }