Skip to content

Commit

Permalink
default argv to use upload path
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterMute committed Sep 2, 2024
1 parent c1ed6c3 commit c2df736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion host/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT([3dslink],[0.6.2],[https://github.com/devkitPro/3dslink/issues])
AC_INIT([3dslink],[0.6.3],[https://github.com/devkitPro/3dslink/issues])
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE([subdir-objects])

Expand Down
2 changes: 1 addition & 1 deletion host/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ int main(int argc, char **argv) {
}

if (argv0 == NULL) {
strcpy(&cmdbuf[4],"3dslink:/");
strcpy(&cmdbuf[4],"sdmc:/3ds/");
strcat(&cmdbuf[4],basename);
} else {
strcpy(&cmdbuf[4],argv0);
Expand Down

0 comments on commit c2df736

Please sign in to comment.