mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 10:22:48 +01:00
- update config
- bump version
This commit is contained in:
parent
80604dc816
commit
7cf69f4273
@ -1,4 +1,4 @@
|
||||
version: 4.0.{build}
|
||||
version: 4.2.{build}
|
||||
|
||||
branches:
|
||||
only:
|
||||
|
@ -1,4 +1,4 @@
|
||||
REDRIVER2 3.4 alpha
|
||||
REDRIVER2 4.2 alpha
|
||||
|
||||
Changelog since Oct 12 2000
|
||||
|
||||
|
@ -14,3 +14,4 @@ pgxpZbuffer=0
|
||||
drawDistance=1200
|
||||
freeCamera=1
|
||||
driver1music=0
|
||||
userChases=RacingFreak,Snoopi,Olanov,Vortex,Fireboyd78
|
@ -1377,12 +1377,14 @@ int LoadUserCutscene(int subindex, int userId = -1)
|
||||
|
||||
if (userId >= 0 && userId < gNumUserChases)
|
||||
{
|
||||
// get user chase instantly
|
||||
sprintf(customFilename, "REPLAYS\\User\\%s\\CUT%d_%d.D2RP", gUserReplayFolderList[userId], gCurrentMissionNumber, subindex);
|
||||
|
||||
if (FileExists(customFilename))
|
||||
userIndex = userId;
|
||||
}
|
||||
|
||||
// if still no valid user replay from input
|
||||
if (userIndex == -1)
|
||||
{
|
||||
// find first valid user replay
|
||||
@ -1468,6 +1470,7 @@ int LoadCutsceneToBuffer(int subindex)
|
||||
{
|
||||
userId = rand() % (gNumUserChases + 1);
|
||||
|
||||
// if random decides to have no user chase - get og or replacement one
|
||||
if (userId == gNumUserChases)
|
||||
userId = -1;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef VERSION_H
|
||||
#define VERSION_H
|
||||
|
||||
#define GAME_VERSION_N "4.0 alpha"
|
||||
#define GAME_VERSION_N "4.2 alpha"
|
||||
#define GAME_TITLE "REDRIVER2"
|
||||
#define GAME_VERSION GAME_TITLE " " GAME_VERSION_N
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user