diff options
author | aap <aap@papnet.eu> | 2020-05-23 11:34:22 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-05-23 11:34:48 +0200 |
commit | 9313bfa15531cb0254e7b8276e4d26a943bbfeec (patch) | |
tree | f7d9d5ee264aa898c8befb6a1c15658afe93c115 /src/skel/win | |
parent | fixed script (diff) | |
download | re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar.gz re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar.bz2 re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar.lz re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar.xz re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.tar.zst re3-9313bfa15531cb0254e7b8276e4d26a943bbfeec.zip |
Diffstat (limited to 'src/skel/win')
-rw-r--r-- | src/skel/win/win.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/skel/win/win.cpp b/src/skel/win/win.cpp index 415f665a..7de58d87 100644 --- a/src/skel/win/win.cpp +++ b/src/skel/win/win.cpp @@ -584,7 +584,7 @@ void _psPrintCpuInfo() ***************************************************************************** */ RwBool -psInitialise(void) +psInitialize(void) { PsGlobal.lastMousePos.x = PsGlobal.lastMousePos.y = 0.0f; @@ -1535,7 +1535,7 @@ RwBool _psSetVideoMode(RwInt32 subSystem, RwInt32 videoMode) useDefault = TRUE; - if ( RsEventHandler(rsRWINITIALISE, PSGLOBAL(window)) == rsEVENTERROR ) + if ( RsEventHandler(rsRWINITIALIZE, PSGLOBAL(window)) == rsEVENTERROR ) return FALSE; RwInitialised = TRUE; @@ -1904,7 +1904,7 @@ WinMain(HINSTANCE instance, * Initialize the platform independent data. * This will in turn initialize the platform specific data... */ - if( RsEventHandler(rsINITIALISE, nil) == rsEVENTERROR ) + if( RsEventHandler(rsINITIALIZE, nil) == rsEVENTERROR ) { return FALSE; } @@ -1970,7 +1970,7 @@ WinMain(HINSTANCE instance, /* * Initialize the 3D (RenderWare) components of the app... */ - if( rsEVENTERROR == RsEventHandler(rsRWINITIALISE, PSGLOBAL(window)) ) + if( rsEVENTERROR == RsEventHandler(rsRWINITIALIZE, PSGLOBAL(window)) ) { DestroyWindow(PSGLOBAL(window)); |