mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 14:34:09 +00:00
skeleton typos
This commit is contained in:
parent
e18eb0ce01
commit
e2d3ef449c
7 changed files with 29 additions and 32 deletions
|
@ -328,7 +328,7 @@ PluginAttach(void)
|
|||
static RwBool
|
||||
Initialise3D(void *param)
|
||||
{
|
||||
if (RsRwInitialise(param))
|
||||
if (RsRwInitialize(param))
|
||||
{
|
||||
#ifdef DEBUGMENU
|
||||
DebugMenuInit();
|
||||
|
@ -1146,10 +1146,10 @@ AppEventHandler(RsEvent event, void *param)
|
|||
{
|
||||
switch( event )
|
||||
{
|
||||
case rsINITIALISE:
|
||||
case rsINITIALIZE:
|
||||
{
|
||||
CGame::InitialiseOnceBeforeRW();
|
||||
return RsInitialise() ? rsEVENTPROCESSED : rsEVENTERROR;
|
||||
return RsInitialize() ? rsEVENTPROCESSED : rsEVENTERROR;
|
||||
}
|
||||
|
||||
case rsCAMERASIZE:
|
||||
|
@ -1161,7 +1161,7 @@ AppEventHandler(RsEvent event, void *param)
|
|||
return rsEVENTPROCESSED;
|
||||
}
|
||||
|
||||
case rsRWINITIALISE:
|
||||
case rsRWINITIALIZE:
|
||||
{
|
||||
return Initialise3D(param) ? rsEVENTPROCESSED : rsEVENTERROR;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue