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

ifdef some Win32 InputCore stuff for plDrawable.

This commit is contained in:
Darryl Pogue
2012-01-04 21:37:52 -08:00
parent 30052e1ca4
commit 6f5643debd
3 changed files with 14 additions and 6 deletions

View File

@ -432,18 +432,18 @@ hsBool plVisLOSMgr::CursorCheck(plVisHit& hit)
/////////////////////////////////////////////////////////////////
static plSceneObject* marker = nil;
static plPipeline* pipe = nil;
static plPipeline* fPipe = nil;
void VisLOSHackBegin(plPipeline* p, plSceneObject* m)
{
marker = m;
pipe = p;
fPipe = p;
}
void VisLOSHackPulse()
{
if( !pipe )
if( !fPipe )
return;
plVisHit hit;