Clean up accidental debug code.

This commit is contained in:
Unknown W. Brackets 2016-05-31 11:53:17 -07:00
parent 30e13c7c37
commit f084084ff7
2 changed files with 3 additions and 2 deletions

View File

@ -367,6 +367,9 @@ void TextureReplacer::NotifyTextureDecoded(const ReplacedTextureDecodeInfo &repl
case ReplacedTextureFormat::F_8888_BGRA:
ConvertBGRA8888ToRGBA8888(saveBuf.data(), (const u32 *)data, (pitch * h) / sizeof(u32));
break;
case ReplacedTextureFormat::F_8888:
// Impossible. Just so we can get warnings on other missed formats.
break;
}
data = saveBuf.data();

View File

@ -1,5 +1,3 @@
#pragma optimize("", off)
#ifdef _WIN32
#define NOMINMAX