1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Added a dummy return to fix a watcom warning.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5585 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-03-09 11:48:13 +00:00
parent 4e7488d9b9
commit b55c290823

View File

@ -190,7 +190,9 @@ unsigned GetBitmapColors (const Bitmap* B)
case bmRGB:
case bmRGBA: return (1U << 24);
default: Internal ("Unknown bitmap type %u", B->Type);
}
}
/* NOTREACHED */
return 0;
}