mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
Fixes after merge
This commit is contained in:
parent
86cc86ac12
commit
9df1d08348
@ -88,16 +88,6 @@ IsShootThrough(uint8 surfType)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool
|
|
||||||
IsSeeThrough(uint8 surfType)
|
|
||||||
{
|
|
||||||
switch(surfType)
|
|
||||||
case SURFACE_GLASS:
|
|
||||||
case SURFACE_TRANSPARENT_CLOTH:
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
class CSurfaceTable
|
class CSurfaceTable
|
||||||
{
|
{
|
||||||
static float ms_aAdhesiveLimitTable[NUMADHESIVEGROUPS][NUMADHESIVEGROUPS];
|
static float ms_aAdhesiveLimitTable[NUMADHESIVEGROUPS][NUMADHESIVEGROUPS];
|
||||||
|
@ -1371,11 +1371,6 @@ cursorEnterCB(GLFWwindow* window, int entered) {
|
|||||||
PSGLOBAL(cursorIsInWindow) = !!entered;
|
PSGLOBAL(cursorIsInWindow) = !!entered;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
cursorEnterCB(GLFWwindow* window, int entered) {
|
|
||||||
PSGLOBAL(cursorIsInWindow) = !!entered;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
*/
|
*/
|
||||||
|
@ -1305,34 +1305,6 @@ InitApplication(HANDLE instance)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
*****************************************************************************
|
|
||||||
*/
|
|
||||||
static BOOL
|
|
||||||
InitApplication(HANDLE instance)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* Perform any necessary MS Windows application initialization. Basically,
|
|
||||||
* this means registering the window class for this application.
|
|
||||||
*/
|
|
||||||
|
|
||||||
WNDCLASS windowClass;
|
|
||||||
|
|
||||||
windowClass.style = CS_BYTEALIGNWINDOW;
|
|
||||||
windowClass.lpfnWndProc = (WNDPROC)MainWndProc;
|
|
||||||
windowClass.cbClsExtra = 0;
|
|
||||||
windowClass.cbWndExtra = 0;
|
|
||||||
windowClass.hInstance = (HINSTANCE)instance;
|
|
||||||
windowClass.hIcon = nil;
|
|
||||||
windowClass.hCursor = LoadCursor(nil, IDC_ARROW);
|
|
||||||
windowClass.hbrBackground = nil;
|
|
||||||
windowClass.lpszMenuName = NULL;
|
|
||||||
windowClass.lpszClassName = AppClassName;
|
|
||||||
|
|
||||||
return RegisterClass(&windowClass);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user