mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
OpenCL: added opencl=true option to scons and fixed the case on the way.
Add ifdef for osx ocl include. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4348 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -78,7 +78,7 @@ public:
|
||||
}
|
||||
|
||||
size_t index = 0;
|
||||
for (index; index < m_Entries.size() - 1; index++)
|
||||
for (; index < m_Entries.size() - 1; index++)
|
||||
{
|
||||
if (strcmp(m_Entries.at(index).name, sectionName) == 0)
|
||||
break;
|
||||
@ -99,7 +99,7 @@ public:
|
||||
return false;
|
||||
|
||||
size_t index = 0;
|
||||
for (index; index < m_Entries.size() - 1; index++)
|
||||
for (; index < m_Entries.size() - 1; index++)
|
||||
{
|
||||
if (strcmp(m_Entries.at(index).name, sectionName) == 0)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user