VideoCommon: Fix function casing in FrameBufferManagerBase

This commit is contained in:
Lioncash
2014-09-20 14:54:59 -04:00
parent 9f2d4ee53e
commit a6ffa55215
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
#include "VideoCommon/VideoCommon.h"
inline bool addrRangesOverlap(u32 aLower, u32 aUpper, u32 bLower, u32 bUpper)
inline bool AddressRangesOverlap(u32 aLower, u32 aUpper, u32 bLower, u32 bUpper)
{
return !((aLower >= bUpper) || (bLower >= aUpper));
}