From: Michael Gernoth Date: Tue, 15 Jan 2008 23:35:16 +0000 (+0100) Subject: add missing break in switch X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/commitdiff_plain/5ffb00a9924c567c3790d532a474c9847661397b add missing break in switch --- diff --git a/src/sim/g_bigmap.c b/src/sim/g_bigmap.c index 7e99174..d70225d 100644 --- a/src/sim/g_bigmap.c +++ b/src/sim/g_bigmap.c @@ -192,6 +192,8 @@ MemDrawBeegMapRect(SimView *view, int x, int y, int w, int h) case 24: case 32: ROW16_32(); + break; + default: /* XXX: handle different depths */ break;