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/FileHandlerARC.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/FileHandlerARC.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/FileHandlerARC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/FileHandlerARC.cpp b/Source/Core/DiscIO/Src/FileHandlerARC.cpp index 322d5e6973..cd53f7a980 100644 --- a/Source/Core/DiscIO/Src/FileHandlerARC.cpp +++ b/Source/Core/DiscIO/Src/FileHandlerARC.cpp @@ -225,7 +225,7 @@ CARCFile::FindFileInfo(std::string _rFullPath) const {
for (size_t i = 0; i < m_FileInfoVector.size(); i++)
{
- if (!stricmp(m_FileInfoVector[i].m_FullPath.c_str(), _rFullPath.c_str()))
+ if (!_stricmp(m_FileInfoVector[i].m_FullPath.c_str(), _rFullPath.c_str()))
{
return(&m_FileInfoVector[i]);
}
|
