Graphics: Fix compilation
This commit is contained in:
parent
e4c89f2763
commit
1b3b86aadb
|
|
@ -23,7 +23,7 @@ namespace Nz
|
||||||
// Then the component that are interesting
|
// Then the component that are interesting
|
||||||
bool enabled;
|
bool enabled;
|
||||||
ComponentType type;
|
ComponentType type;
|
||||||
unsigned int offset;
|
std::size_t offset;
|
||||||
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
||||||
|
|
||||||
if (enabled)
|
if (enabled)
|
||||||
|
|
@ -54,7 +54,7 @@ namespace Nz
|
||||||
// Then the component that are interesting
|
// Then the component that are interesting
|
||||||
bool enabled;
|
bool enabled;
|
||||||
ComponentType type;
|
ComponentType type;
|
||||||
unsigned int offset;
|
std::size_t offset;
|
||||||
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
||||||
|
|
||||||
if (enabled)
|
if (enabled)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue