Removing Core::IsGPUThread() and Core::IsCPUThread() calls in favor of simple bool isCPUThread parameter value.

This commit is contained in:
James Dunne
2013-03-14 01:08:26 -05:00
parent 4137fc0023
commit f1ef51abc8
3 changed files with 13 additions and 11 deletions

View File

@ -465,8 +465,8 @@ End:
void * memcpy_amd(void *dest, const void *src, size_t n)
{
memcpy(dest, src, n);
return dest;
memcpy(dest, src, n);
return dest;
}