Index: core/src/fxge/dib/fx_dib_main.cpp |
diff --git a/core/src/fxge/dib/fx_dib_main.cpp b/core/src/fxge/dib/fx_dib_main.cpp |
index 74e9c3cfd5f7822dd02515917f3ccc9940025d07..65a4f89804001cda80e1b7c3796f7ad6aca68d33 100644 |
--- a/core/src/fxge/dib/fx_dib_main.cpp |
+++ b/core/src/fxge/dib/fx_dib_main.cpp |
@@ -1054,10 +1054,8 @@ FX_DWORD CFX_DIBitmap::GetPixel(int x, int y) const |
case FXDIB_1bppRgb: { |
if ((*pos) & (1 << (7 - x % 8))) { |
return m_pPalette ? m_pPalette[1] : 0xffffffff; |
- } else { |
- return m_pPalette ? m_pPalette[0] : 0xff000000; |
} |
- break; |
+ return m_pPalette ? m_pPalette[0] : 0xff000000; |
} |
case FXDIB_8bppMask: |
return (*pos) << 24; |
@@ -1618,7 +1616,8 @@ FX_BOOL CFX_ImageRenderer::Continue(IFX_Pause* pPause) |
{ |
if (m_Status == 1) { |
return m_Stretcher.Continue(pPause); |
- } else if (m_Status == 2) { |
+ } |
+ if (m_Status == 2) { |
if (m_pTransformer->Continue(pPause)) { |
return TRUE; |
} |