From 5ffb00a9924c567c3790d532a474c9847661397b Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Wed, 16 Jan 2008 00:35:16 +0100 Subject: [PATCH] add missing break in switch --- src/sim/g_bigmap.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.39.2