From 2165c6893817dd98548d6be6369cc5c9922d1b58 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sat, 16 May 2015 13:26:55 +0200 Subject: [PATCH] oups forget a couple of break --- plugins/GSdx/GSPng.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/GSdx/GSPng.cpp b/plugins/GSdx/GSPng.cpp index a29ce0f1fa..940d371f09 100644 --- a/plugins/GSdx/GSPng.cpp +++ b/plugins/GSdx/GSPng.cpp @@ -43,6 +43,7 @@ namespace GSPng { } img.write(root + "_R8.png"); } + break; case R16I_PNG: { @@ -55,6 +56,7 @@ namespace GSPng { } img.write(root + "_R16.png"); } + break; case R32I_PNG: { @@ -72,6 +74,7 @@ namespace GSPng { img_msb.write(root + "_R32I_msb.png"); img_lsb.write(root + "_R32I_lsb.png"); } + break; case DEPTH_PNG: { @@ -149,6 +152,7 @@ namespace GSPng { img_opaque.write(root + ".png"); img_alpha.write(root + "_alpha.png"); } + break; default: ASSERT(0);