Skip to content

Commit

Permalink
fatms371mod should not be run on a GO
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Sep 28, 2024
1 parent c1ca2f2 commit 25c6892
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion extras/apps/installer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ all: $(TARGET).prx
CFLAGS = -std=c99 -Os -G0 -Wall
INCDIR = $(PSPSDK)/include $(ARKROOT)/common/include $(ARKROOT)/libs/colordebugger $(ARKROOT)/libs/graphics

LIBS = -lgraphics -lcolordebugger -lansic -lpspvram -lpspsystemctrl_user
LIBS = -lgraphics -lcolordebugger -lansic -lpspvram -lpspsystemctrl_user -lpspkubridge

CXXFLAGS = $(CFLAGS)
ASFLAGS = $(CFLAGS)
Expand Down
1 change: 1 addition & 0 deletions extras/apps/installer/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ int main(int argc, char * argv[])
int len = strlen(argv[0])-8;
char fatms[len];
for (int i=0; i<N_FLASH_FILES; i++){
if(strstr(flash_files[i].orig, "fatms") && (kuKernelGetModel() == PSP_GO)) continue;
if(strstr(flash_files[i].orig, "fatms")) {
snprintf(fatms, strlen(argv[0])-8, "%s", argv[0]);
strcpy(path, fatms);
Expand Down

0 comments on commit 25c6892

Please sign in to comment.