mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-29 16:13:45 +00:00
small changes
This commit is contained in:
parent
776d46aacb
commit
bef07b6353
1 changed files with 10 additions and 0 deletions
|
@ -201,6 +201,11 @@ void CFerry::Init(void* pInstancePtr)
|
||||||
|
|
||||||
void CFerry::InitFerrys(void)
|
void CFerry::InitFerrys(void)
|
||||||
{
|
{
|
||||||
|
printf("init ferrys\n");
|
||||||
|
#ifdef GTA_NETWORK
|
||||||
|
if (gIsMultiplayerGame)
|
||||||
|
SetupForMultiplayer();
|
||||||
|
#endif
|
||||||
if (!mspInst)
|
if (!mspInst)
|
||||||
Init(nil);
|
Init(nil);
|
||||||
for (int i = 0; i < NUM_FERRIES; i++)
|
for (int i = 0; i < NUM_FERRIES; i++)
|
||||||
|
@ -348,6 +353,10 @@ void CFerry::Render(void)
|
||||||
|
|
||||||
void CFerry::RenderAllRemaning(void)
|
void CFerry::RenderAllRemaning(void)
|
||||||
{
|
{
|
||||||
|
#ifdef GTA_NETWORK
|
||||||
|
if (gIsMultiplayerGame)
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
for (int i = 0; i < NUM_FERRIES; i++) {
|
for (int i = 0; i < NUM_FERRIES; i++) {
|
||||||
CFerry* pFerry = GetFerry(i);
|
CFerry* pFerry = GetFerry(i);
|
||||||
if (pFerry) {
|
if (pFerry) {
|
||||||
|
@ -802,6 +811,7 @@ void CFerry::SetupForMultiplayer(void)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < NUM_FERRIES; i++)
|
for (int i = 0; i < NUM_FERRIES; i++)
|
||||||
mspInst->m_apFerries[i] = nil;
|
mspInst->m_apFerries[i] = nil;
|
||||||
|
printf("setting up the ferrys for multiplayer\n");
|
||||||
CStreaming::SetModelIsDeletable(MI_FERRY);
|
CStreaming::SetModelIsDeletable(MI_FERRY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue