Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,9 @@ jobs:
strategy:
matrix:
image: ["Wii", "GameCube"]
container: devkitpro/devkitppc:latest
container: ghcr.io/extremscorner/libogc2:latest

steps:
- name: Install packages
run: |
sudo dkp-pacman-key --recv-keys C8A2759C315CFBC3429CC2E422B803BA8AA3D7CE --keyserver keyserver.ubuntu.com
sudo dkp-pacman-key --lsign-key C8A2759C315CFBC3429CC2E422B803BA8AA3D7CE
sudo sed -i '/^\[dkp-libs\]$/,$d' /opt/devkitpro/pacman/etc/pacman.conf
sudo echo -e '[extremscorner-devkitpro]\nServer = https://packages.extremscorner.org/devkitpro/linux/$arch' >> /opt/devkitpro/pacman/etc/pacman.conf
sudo dkp-pacman -Sy
sudo dkp-pacman -S --noconfirm --ask 4 gamecube-tools-git libogc2 libogc2-libdvm

- name: Checkout vbagx repo
uses: actions/checkout@v4
with:
Expand Down
Binary file removed buildtools/libfreetype.a
Binary file not shown.
41 changes: 0 additions & 41 deletions buildtools/libfreetype.la

This file was deleted.

9 changes: 3 additions & 6 deletions source/fileop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ bool isMounted[9] = { false, false, false, false, false, false, false, false, fa
static DISC_INTERFACE* usb = &__io_usbstorage;
static DISC_INTERFACE* dvd = &__io_wiidvd;
#else
static DISC_INTERFACE* carda = &__io_gcsda;
static DISC_INTERFACE* cardb = &__io_gcsdb;
static DISC_INTERFACE* port2 = &__io_gcsd2;
static DISC_INTERFACE* dvd = &__io_gcdvd;
static DISC_INTERFACE* gcloader = &__io_gcode;
#endif
Expand Down Expand Up @@ -245,17 +242,17 @@ static bool MountFAT(int device, int silent)
case DEVICE_SD_SLOTA:
sprintf(name, "carda");
sprintf(name2, "carda:");
disc = carda;
disc = get_io_gcsda();
break;
case DEVICE_SD_SLOTB:
sprintf(name, "cardb");
sprintf(name2, "cardb:");
disc = cardb;
disc = get_io_gcsdb();
break;
case DEVICE_SD_PORT2:
sprintf(name, "port2");
sprintf(name2, "port2:");
disc = port2;
disc = get_io_gcsd2();
break;
case DEVICE_SD_GCLOADER:
sprintf(name, "gcloader");
Expand Down
2 changes: 1 addition & 1 deletion source/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ static void * ProgressThread (void *arg)
void
InitGUIThreads()
{
LWP_CreateThread (&guithread, UpdateGUI, NULL, NULL, 0, 70);
LWP_CreateThread (&guithread, UpdateGUI, NULL, NULL, 24576, 70);
LWP_CreateThread (&progressthread, ProgressThread, NULL, NULL, 0, 40);
}

Expand Down