Renamed Buffer::IsSupported to IsStorageSupported

Former-commit-id: 12309ca590820fd68ab2b15a4c41ffb554832603
This commit is contained in:
Lynix
2015-01-04 18:30:50 +01:00
parent d560975e09
commit 911e10fa84
3 changed files with 6 additions and 8 deletions

View File

@@ -25,13 +25,13 @@
NzMeshParams::NzMeshParams()
{
if (!NzBuffer::IsSupported(storage))
if (!NzBuffer::IsStorageSupported(storage))
storage = nzDataStorage_Software;
}
bool NzMeshParams::IsValid() const
{
if (!NzBuffer::IsSupported(storage))
if (!NzBuffer::IsStorageSupported(storage))
{
NazaraError("Storage not supported");
return false;