Skip to content

Commit

Permalink
Merge pull request #556 from Tilka/fix_warnings
Browse files Browse the repository at this point in the history
Fix warnings
  • Loading branch information
lioncash committed Jul 4, 2014
2 parents be1fe80 + 20dc0e7 commit 32e45e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/Core/AudioCommon/Mixer.h
Expand Up @@ -88,9 +88,9 @@ class CMixer {
, m_input_sample_rate(sample_rate)
, m_indexW(0)
, m_indexR(0)
, m_numLeftI(0.0f)
, m_LVolume(256)
, m_RVolume(256)
, m_numLeftI(0.0f)
{
memset(m_buffer, 0, sizeof(m_buffer));
}
Expand Down
3 changes: 0 additions & 3 deletions Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp
Expand Up @@ -13,9 +13,6 @@

using namespace Gen;

static const u8 GC_ALIGNED16(pbswapShuffle1x4[16]) = {3, 2, 1, 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};
static u32 GC_ALIGNED16(float_buffer);

void EmuCodeBlock::LoadAndSwap(int size, Gen::X64Reg dst, const Gen::OpArg& src)
{
if (cpu_info.bMOVBE)
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DiscIO/BannerLoader.h
Expand Up @@ -19,8 +19,8 @@ class IBannerLoader
{
public:
IBannerLoader()
: m_pBannerFile(nullptr)
, m_IsValid(false)
: m_IsValid(false)
, m_pBannerFile(nullptr)
{}

virtual ~IBannerLoader()
Expand Down

0 comments on commit 32e45e6

Please sign in to comment.