Change types to stop compiler warnings

This commit is contained in:
Blaypeg 2014-05-25 21:36:55 +01:00
parent 95f67080f8
commit f1257f9e3f
2 changed files with 3 additions and 3 deletions

View file

@ -191,9 +191,9 @@ void MemoryViewerPanel::ShowMemory()
t_mem_addr_str += wxString::Format("%08x ", addr);
}
for (int row = 0; row < m_rowcount; row++)
for (u32 row = 0; row < m_rowcount; row++)
{
for (int col = 0; col < m_colcount; col++)
for (u32 col = 0; col < m_colcount; col++)
{
u32 addr = m_addr + row * m_colcount + col;

View file

@ -523,7 +523,7 @@ void VHDDManagerDialog::LoadPaths()
{
IniEntry<int> path_count;
path_count.Init("path_count", "HDDManager");
int count = 0;
size_t count = 0;
count = path_count.LoadValue(count);
for(size_t i=0; i<count; ++i)