diff options
| author | masken <masken3@gmail.com> | 2008-08-23 15:28:24 +0000 |
|---|---|---|
| committer | masken <masken3@gmail.com> | 2008-08-23 15:28:24 +0000 |
| commit | ae5b59747a4d893775d2b9cc9ad78e9e319f729b (patch) | |
| tree | 7c0f75c2d8a0f5a38d700c079851043f1b51a8d6 /Source/Core/DiscIO/Src/FileSystemGCWii.cpp | |
| parent | 8be70a8ed28dc00ecff3eb091e4745640e288176 (diff) | |
Turned on Warnings as Errors for all vcprojs. Fixed almost all of the warnings in win32. Added many SVN Ignore settings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@283 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/FileSystemGCWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/FileSystemGCWii.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/FileSystemGCWii.cpp b/Source/Core/DiscIO/Src/FileSystemGCWii.cpp index 1a76bb1814..8632bcfede 100644 --- a/Source/Core/DiscIO/Src/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/Src/FileSystemGCWii.cpp @@ -164,7 +164,7 @@ CFileSystemGCWii::FindFileInfo(const char* _rFullPath) const {
for (size_t i = 0; i < m_FileInfoVector.size(); i++)
{
- if (!stricmp(m_FileInfoVector[i].m_FullPath, _rFullPath))
+ if (!_stricmp(m_FileInfoVector[i].m_FullPath, _rFullPath))
{
return(&m_FileInfoVector[i]);
}
|
