summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/IniFile.cpp
diff options
context:
space:
mode:
authorLPFaint99 <lpfaint99@gmail.com>2009-02-21 23:44:40 +0000
committerLPFaint99 <lpfaint99@gmail.com>2009-02-21 23:44:40 +0000
commit9cfa4e93851e2551d0237ab6727bd03dd229b34d (patch)
tree91f9b74d93aa18944ea65e3ab1c1a926ffc62526 /Source/Core/Common/Src/IniFile.cpp
parentb4b94fe594b117dad33ca98a8962231d926ed10e (diff)
Adds IsDrive to FileUtil for win32,
Adds booting from drive to gui. disabled as it is currently too slow unless it is a virtual drive Changes DriveUtil to start checking at D: as it is unlikely that a, b, or c will be a cd/dvd drive Addes DriveBlob functions, untested on linux/osx probably needs more work Removes duplicate message from EXI_DeviceMemoryCard.cpp when creating a brand new memcard git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2345 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
-rw-r--r--Source/Core/Common/Src/IniFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp
index 63ef71146d..c44da39e94 100644
--- a/Source/Core/Common/Src/IniFile.cpp
+++ b/Source/Core/Common/Src/IniFile.cpp
@@ -162,7 +162,7 @@ std::string* IniFile::GetLine(Section* section, const char* key, std::string* va
std::string lineKey;
ParseLine(line, &lineKey, valueOut, commentOut);
- if (!stricmp(lineKey.c_str(), key))
+ if (!strcasecmp(lineKey.c_str(), key))
{
return &line;
}