Skip to content
This repository was archived by the owner on Mar 18, 2023. It is now read-only.

Commit 6e0f92a

Browse files
committed
Use newer Docker image with docker-make.sh/.bat.
Fix compile error with latest PS2SDK revision.
1 parent 2ab927d commit 6e0f92a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docker-make.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
set DOCKER_IMAGE=root670/ps2dev-gskit
3-
docker run -t --rm -v "%CD%:/src" "%DOCKER_IMAGE%" make %*
2+
set DOCKER_IMAGE=root670/ps2dev-docker
3+
docker run -t --rm -v "%CD%:/build" "%DOCKER_IMAGE%" make %*

docker-make.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
DOCKER_IMAGE=root670/ps2dev-gskit
3-
exec docker run -t --rm -v "$PWD:/src" "$DOCKER_IMAGE" make "$@"
2+
DOCKER_IMAGE=root670/ps2dev-docker
3+
exec docker run -t --rm -v "$PWD:/build" "$DOCKER_IMAGE" make "$@"

src/startgame.c

-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ void startgameExecute(char *path)
157157
void *bootstrapEntrypoint = loadBootstrap();
158158

159159
padPortClose(0, 0);
160-
padReset();
161160

162161
fioExit();
163162
SifInitRpc(0);

0 commit comments

Comments
 (0)