Skip to content

Commit 9bba6b2

Browse files
committed
fix copypasta
1 parent 42634c6 commit 9bba6b2

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

nsis/INIfiles/devkitProUpdate.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[devkitProUpdate]
2-
Build=54
2+
Build=55
33
URL=http://downloads.devkitpro.org
4-
Filename=devkitProUpdater-3.0.1.exe
4+
Filename=devkitProUpdater-3.0.2.exe
55

66
[msys2]
77
Version=2.10.0

nsis/devkitPro.nsi

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ RequestExecutionLevel admin ;Require admin rights on NT6+ (When UAC is turned on
1515

1616
; HM NIS Edit Wizard helper defines
1717
!define PRODUCT_NAME "devkitProUpdater"
18-
!define PRODUCT_VERSION "3.0.1"
18+
!define PRODUCT_VERSION "3.0.2"
1919
!define PRODUCT_PUBLISHER "devkitPro"
2020
!define PRODUCT_WEB_SITE "http://www.devkitpro.org"
2121
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
2222
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
2323
!define PRODUCT_STARTMENU_REGVAL "NSIS:StartMenuDir"
24-
!define BUILD "54"
24+
!define BUILD "55"
2525

2626
SetCompressor /SOLID lzma
2727

@@ -382,6 +382,8 @@ SectionEnd
382382
!insertmacro MUI_DESCRIPTION_TEXT ${SecGP32Dev} "tools for GP32 development"
383383
!insertmacro MUI_DESCRIPTION_TEXT ${SecNDSDev} "tools for NDS development"
384384
!insertmacro MUI_DESCRIPTION_TEXT ${Sec3DSDev} "tools for 3DS development"
385+
!insertmacro MUI_DESCRIPTION_TEXT ${SecGameCubeDev} "tools for Gamecube development"
386+
!insertmacro MUI_DESCRIPTION_TEXT ${SecWiiDev} "tools for Wii development"
385387
!insertmacro MUI_FUNCTION_DESCRIPTION_END
386388

387389
var keepINI
@@ -504,12 +506,12 @@ installing:
504506
push ${Sec3DSDev}
505507
call checkEnabled
506508

507-
push "SwitchDev"
508-
push ${SecSwitchDev}
509+
push "GameCubeDev"
510+
push ${SecGameCubeDev}
509511
call checkEnabled
510512

511-
push "SwitchDev"
512-
push ${SecSwitchDev}
513+
push "WiiDev"
514+
push ${SecWiiDev}
513515
call checkEnabled
514516

515517
push "SwitchDev"

0 commit comments

Comments
 (0)