mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12: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);
|
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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue