mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Obliterate hsBool
This commit is contained in:
@ -564,7 +564,7 @@ bool SceneSync::Update()
|
||||
plConvertSettings settings;
|
||||
settings.fSceneViewer = true;
|
||||
plConvert::Instance().Init(GetCOREInterface(), &msg, &settings);
|
||||
hsBool ret = plConvert::Instance().Convert(nodes);
|
||||
bool ret = plConvert::Instance().Convert(nodes);
|
||||
|
||||
// REMOVE/FIX (COLIN)
|
||||
hsMaterialConverter::Instance().FreeMaterialCache(nil);
|
||||
|
@ -57,7 +57,7 @@ protected:
|
||||
int fNumRefs;
|
||||
KeyRefs() : fKey(nil), fNumRefs(-1) {}
|
||||
KeyRefs(plKey key, int numRefs) : fKey(key), fNumRefs(numRefs) {}
|
||||
hsBool operator== (const plKey key)
|
||||
bool operator== (const plKey key)
|
||||
{
|
||||
return (fKey == key);
|
||||
}
|
||||
|
@ -214,7 +214,7 @@ void plUpdatableClient::IGetUpdate()
|
||||
}
|
||||
}
|
||||
|
||||
hsBool plUpdatableClient::Init()
|
||||
bool plUpdatableClient::Init()
|
||||
{
|
||||
if (plClient::Init())
|
||||
{
|
||||
@ -227,7 +227,7 @@ hsBool plUpdatableClient::Init()
|
||||
return false;
|
||||
}
|
||||
|
||||
hsBool plUpdatableClient::MainLoop()
|
||||
bool plUpdatableClient::MainLoop()
|
||||
{
|
||||
IGetUpdate();
|
||||
|
||||
@ -242,7 +242,7 @@ hsBool plUpdatableClient::MainLoop()
|
||||
|
||||
#include <direct.h>
|
||||
|
||||
hsBool plUpdatableClient::Shutdown()
|
||||
bool plUpdatableClient::Shutdown()
|
||||
{
|
||||
if (fDirty && fDataPath)
|
||||
{
|
||||
|
@ -69,9 +69,9 @@ public:
|
||||
|
||||
virtual hsG3DDeviceModeRecord ILoadDevMode(const char* devModeFile);
|
||||
|
||||
virtual hsBool Init();
|
||||
virtual hsBool MainLoop();
|
||||
virtual hsBool Shutdown();
|
||||
virtual bool Init();
|
||||
virtual bool MainLoop();
|
||||
virtual bool Shutdown();
|
||||
|
||||
void InitUpdate(const char *semaphoreName, const char *pipeName, const char *dir);
|
||||
|
||||
|
Reference in New Issue
Block a user