mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 10:44:07 +00:00
skeleton typos
This commit is contained in:
parent
9c6046455e
commit
9313bfa155
7 changed files with 25 additions and 29 deletions
|
@ -328,7 +328,7 @@ PluginAttach(void)
|
|||
static RwBool
|
||||
Initialise3D(void *param)
|
||||
{
|
||||
if (RsRwInitialise(param))
|
||||
if (RsRwInitialize(param))
|
||||
{
|
||||
#ifdef DEBUGMENU
|
||||
DebugMenuInit();
|
||||
|
@ -1149,10 +1149,10 @@ AppEventHandler(RsEvent event, void *param)
|
|||
{
|
||||
switch( event )
|
||||
{
|
||||
case rsINITIALISE:
|
||||
case rsINITIALIZE:
|
||||
{
|
||||
CGame::InitialiseOnceBeforeRW();
|
||||
return RsInitialise() ? rsEVENTPROCESSED : rsEVENTERROR;
|
||||
return RsInitialize() ? rsEVENTPROCESSED : rsEVENTERROR;
|
||||
}
|
||||
|
||||
case rsCAMERASIZE:
|
||||
|
@ -1164,7 +1164,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