Skip to content

Commit acca6b1

Browse files
authored
Merge pull request #147 from OpenDriver2/develop-SoapyMan
RC1 fixes
2 parents 6fba273 + 6b780a8 commit acca6b1

File tree

155 files changed

+2568
-24936
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+2568
-24936
lines changed

.appveyor/Install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ curl "$linux_premake_url" -Lo premake5.tar.gz
99
tar xvf premake5.tar.gz
1010

1111
sudo apt-get update -qq -y
12-
sudo apt-get install --no-install-recommends -y g++-7-multilib gcc-7-multilib
12+
sudo apt-get install --no-install-recommends -y gcc-multilib g++-multilib
1313
sudo apt-get install -qq aptitude -y
1414

1515
# fix Ubuntu's broken mess of packages using aptitude

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "src_rebuild/PsyCross"]
2+
path = src_rebuild/PsyCross
3+
url = https://github.com/OpenDriver2/PsyCross.git

PSXToolchain/CDSrc/licensea.dat

-27.4 KB
Binary file not shown.

PSXToolchain/CDSrc/pack.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mkpsxiso.exe redriver2_cd.xml -y
2+
pause

PSXToolchain/CDSrc/redriver2_cd.xml

Lines changed: 239 additions & 127 deletions
Large diffs are not rendered by default.

PSXToolchain/CDSrc/unpack.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dumpsxiso.exe Driver2CD2.bin -s CD.xml
2+
pause

PSXToolchain/psx_build.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
echo off
2+
cls
13
set REDRIVER_FOLDER=%cd%\..
24

35
rem Make a symlink

PSXToolchain/psx_makecd.bat

Lines changed: 0 additions & 4 deletions
This file was deleted.

appveyor.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ environment:
1616
project_folder: '%APPVEYOR_BUILD_FOLDER%\\src_rebuild'
1717
dependency_folder: '%APPVEYOR_BUILD_FOLDER%\dependencies'
1818
# Dependency URLs
19-
windows_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-windows.zip'
19+
windows_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-windows.zip'
2020
windows_jpeg_url: 'http://www.ijg.org/files/jpegsr9d.zip'
2121
windows_openal_url: 'https://openal-soft.org/openal-binaries/openal-soft-1.21.1-bin.zip'
22-
windows_sdl2_url: 'https://www.libsdl.org/release/SDL2-devel-2.0.14-VC.zip'
23-
linux_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-linux.tar.gz'
22+
windows_sdl2_url: 'https://www.libsdl.org/release/SDL2-devel-2.0.20-VC.zip'
23+
linux_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-linux.tar.gz'
2424
# Dependency Directories
2525
windows_jpeg_dir: '%dependency_folder%\jpeg-9d'
2626
windows_openal_dir: '%dependency_folder%\openal-soft-1.21.1-bin'
27-
windows_sdl2_dir: '%dependency_folder%\SDL2-2.0.14'
27+
windows_sdl2_dir: '%dependency_folder%\SDL2-2.0.20'
2828

2929

3030
install:
31+
- git submodule init
32+
- git submodule update
3133
- cmd: '%APPVEYOR_BUILD_FOLDER%\.appveyor\Install.bat'
3234
- sh: '${APPVEYOR_BUILD_FOLDER}/.appveyor/Install.sh'
3335

data/config.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ start=w
9797
select=H
9898

9999
[cdfs]
100-
image=install/Driver2CD1.bin
100+
#image=install/Driver2CD1.bin
101101
mode=1,2,2352 # track, mode, sector size. DO NOT MODIFY
102102

103103
[pad]
@@ -107,7 +107,10 @@ pad2device=-1 # player 2 controller device; -1 for automatic assignment
107107
[render]
108108
windowWidth=1280
109109
windowHeight=720
110-
fullscreen=0 # enable full screen mode; it takes screen resolution
110+
fullscreen=0 # enable full screen mode
111+
screenWidth=1280 # screen resolution when fullscreen is on
112+
screenHeight=720
113+
vsync=1 # Prevents screen tearing in Full screen. Turn it off if you have framerate problems.
111114
pgxpTextureMapping=1
112115
bilinearFiltering=1 # "smooth" textures
113116
pgxpZbuffer=1 # full Z-buffer on PSX polygons
@@ -121,5 +124,4 @@ freeCamera=1 # Press F7 in game to enable
121124
fastLoadingScreens=1
122125
widescreenOverlays=1 # set 1 to see map, bars and stats aligned to screen corners
123126
driver1music=0 # put Driver 1's MUSIC.BIN as D1MUSIC.BIN to DRIVER2\SOUNDS folder
124-
overrideContent=0 # this enables texture and car model modding
125-
userChases=RacingFreak,Snoopi,Olanov,Vortex,Fireboyd78
127+
overrideContent=0 # this enables texture and car model modding

0 commit comments

Comments
 (0)