summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-18 04:50:46 +0000
committernakeee <nakeee@gmail.com>2008-09-18 04:50:46 +0000
commit67aa39c89e520f510d52082ae396ff07fe38cce2 (patch)
tree27e5e32ed6dcf2800088a2a8e9f2f322f5326d5c /Source/Core
parent28cd7e220c5176b463c1602319fc9daf28f8b718 (diff)
warning fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@571 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Src/FilesystemViewer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Src/FilesystemViewer.cpp b/Source/Core/DolphinWX/Src/FilesystemViewer.cpp
index 89770e85e7..7187998a2b 100644
--- a/Source/Core/DolphinWX/Src/FilesystemViewer.cpp
+++ b/Source/Core/DolphinWX/Src/FilesystemViewer.cpp
@@ -45,7 +45,7 @@ CFilesystemViewer::CFilesystemViewer(const std::string fileName, wxWindow* paren
pFileSystem->GetFileList(&Our_Files);
CreateGUIControls();
- for(int a = 0;a < Our_Files.size();++a)
+ for(u32 a = 0;a < Our_Files.size();++a)
m_Treectrl->AppendItem(RootId, wxString::FromAscii(Our_Files[a].m_FullPath));//printf("%d dir? %s '%s'\n", a, Our_Files[a].IsDirectory() ? "True" : "False", Our_Files[a].m_FullPath);
}