Change types to stop compiler warnings
This commit is contained in:
@@ -191,9 +191,9 @@ void MemoryViewerPanel::ShowMemory()
|
|||||||
t_mem_addr_str += wxString::Format("%08x ", addr);
|
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;
|
u32 addr = m_addr + row * m_colcount + col;
|
||||||
|
|
||||||
|
|||||||
@@ -523,7 +523,7 @@ void VHDDManagerDialog::LoadPaths()
|
|||||||
{
|
{
|
||||||
IniEntry<int> path_count;
|
IniEntry<int> path_count;
|
||||||
path_count.Init("path_count", "HDDManager");
|
path_count.Init("path_count", "HDDManager");
|
||||||
int count = 0;
|
size_t count = 0;
|
||||||
count = path_count.LoadValue(count);
|
count = path_count.LoadValue(count);
|
||||||
|
|
||||||
for(size_t i=0; i<count; ++i)
|
for(size_t i=0; i<count; ++i)
|
||||||
|
|||||||
Reference in New Issue
Block a user