mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Change types to stop compiler warnings
This commit is contained in:
parent
95f67080f8
commit
f1257f9e3f
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue