Remove tabs in all files except in skyeye imports and in generated GL code

This commit is contained in:
Emmanuel Gil Peyrot 2014-11-19 09:02:05 +00:00
parent f5d38649c7
commit 739bb58c3a
14 changed files with 168 additions and 168 deletions

View file

@ -318,9 +318,9 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
return;
#ifndef HAVE_PNG
return;
return;
#else
if (!data)
if (!data)
return;
// Write data to file

View file

@ -41,7 +41,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data
// Utility class to log Pica commands.
struct PicaTrace {
struct Write : public std::pair<u32,u32> {
Write(u32 id, u32 value) : std::pair<u32,u32>(id, value) {}
Write(u32 id, u32 value) : std::pair<u32,u32>(id, value) {}
u32& Id() { return first; }
const u32& Id() const { return first; }