Skip to content

Commit

Permalink
Merge pull request #222 from comex/more-clang-fixes
Browse files Browse the repository at this point in the history
More clang fixes
  • Loading branch information
delroth committed Mar 30, 2014
2 parents b31d1fd + 92dd498 commit 9b03178
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/ISOProperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ void CISOProperties::OnExtractDataFromHeader(wxCommandEvent& event)
if (DiscIO::IsVolumeWiiDisc(OpenISO))
{
wxString Directory = m_Treectrl->GetItemText(m_Treectrl->GetSelection());
int partitionNum = wxAtoi(Directory.Mid(Directory.find_first_of("0123456789"), 2));
unsigned int partitionNum = wxAtoi(Directory.Mid(Directory.find_first_of("0123456789"), 2));

if (WiiDisc.size() > partitionNum)
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/RasterFont.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void RasterFont::printMultilineText(const std::string& text, double start_x, dou
continue;
}

if (c < char_offset || c >= char_count+char_offset)
if ((u32) c < char_offset || (u32) c >= char_count+char_offset)
continue;

vertices[usage++] = x;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/BPFunctions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void OnPixelFormatChange()
auto new_format = bpmem.zcontrol.pixel_format;

// no need to reinterpret pixel data in these cases
if (new_format == old_format || old_format == (unsigned int)-1)
if (new_format == old_format || old_format == PEControl::INVALID_FMT)
goto skip;

// Check for pixel format changes
Expand Down
17 changes: 9 additions & 8 deletions Source/Core/VideoCommon/BPMemory.h
Original file line number Diff line number Diff line change
Expand Up @@ -779,14 +779,15 @@ union PEControl
{
enum PixelFormat : u32
{
RGB8_Z24 = 0,
RGBA6_Z24 = 1,
RGB565_Z16 = 2,
Z24 = 3,
Y8 = 4,
U8 = 5,
V8 = 6,
YUV420 = 7
RGB8_Z24 = 0,
RGBA6_Z24 = 1,
RGB565_Z16 = 2,
Z24 = 3,
Y8 = 4,
U8 = 5,
V8 = 6,
YUV420 = 7,
INVALID_FMT = 0xffffffff, // Used by Dolphin to represent a missing value.
};

enum DepthFormat : u32
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/VideoCommon/RenderBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ int Renderer::s_LastEFBScale;
bool Renderer::s_skipSwap;
bool Renderer::XFBWrited;

PEControl::PixelFormat Renderer::prev_efb_format = (PEControl::PixelFormat)-1;
PEControl::PixelFormat Renderer::prev_efb_format = PEControl::INVALID_FMT;
unsigned int Renderer::efb_scale_numeratorX = 1;
unsigned int Renderer::efb_scale_numeratorY = 1;
unsigned int Renderer::efb_scale_denominatorX = 1;
Expand All @@ -89,7 +89,7 @@ Renderer::Renderer()
Renderer::~Renderer()
{
// invalidate previous efb format
prev_efb_format = (PEControl::PixelFormat)-1;
prev_efb_format = PEControl::INVALID_FMT;

efb_scale_numeratorX = efb_scale_numeratorY = efb_scale_denominatorX = efb_scale_denominatorY = 1;

Expand Down

0 comments on commit 9b03178

Please sign in to comment.