1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-21 12:49:10 +00:00

Obliterate hsBool

This commit is contained in:
2012-07-11 01:28:00 -04:00
parent 5f78b33db4
commit a709e17069
1041 changed files with 7889 additions and 8070 deletions

View File

@ -225,7 +225,7 @@ void plProxyGen::IGenerateProxy()
hsGMaterial* mat = IGetProxyMaterial();
hsAssert(mat, "Failed to create proxy material");
hsBool onCreate = !fProxyDrawables[idx];
bool onCreate = !fProxyDrawables[idx];
fProxyIndex.SetCount(0);
fProxyDrawables[idx] = ICreateProxy(mat, fProxyIndex, fProxyDrawables[idx]);
@ -296,7 +296,7 @@ void plProxyGen::IDestroyProxy()
fProxyMaterials.Reset();
}
hsBool plProxyGen::MsgReceive(plMessage* msg)
bool plProxyGen::MsgReceive(plMessage* msg)
{
plProxyDrawMsg* pDraw = plProxyDrawMsg::ConvertNoRef(msg);
if( pDraw && (pDraw->GetProxyFlags() & IGetProxyMsgType()) )
@ -356,7 +356,7 @@ void plProxyGen::SetTransform(const hsMatrix44& l2w, const hsMatrix44& w2l)
}
}
void plProxyGen::SetDisable(hsBool on)
void plProxyGen::SetDisable(bool on)
{
uint32_t idx = IGetProxyIndex();
if( fProxyDrawables[idx] )