Remove possible switch case fall through

Luckily there were no side effects in this... case
This commit is contained in:
Lovell Fuller 2017-06-25 19:09:14 +01:00
parent df97ef23d9
commit 72b0efd393

View File

@ -438,9 +438,11 @@ namespace sharp {
// Southeast
left = inWidth - outWidth;
top = inHeight - outHeight;
break;
case 7:
// Southwest
top = inHeight - outHeight;
break;
case 8:
// Northwest
break;