From bb00614532743f814a4fd8478d159381e344393f Mon Sep 17 00:00:00 2001 From: Bailey Fox Date: Tue, 30 May 2017 01:34:11 -0500 Subject: [PATCH] Display the correct link on devkits --- source/installer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/installer.c b/source/installer.c index e02f399..a60b258 100644 --- a/source/installer.c +++ b/source/installer.c @@ -67,7 +67,7 @@ u32 ShowInstallerStatus(void) { DrawStringF(BOT_SCREEN, pos_x1, pos_y0 + (5*stp), COLOR_STATUS(statusBackup) , COLOR_STD_BG, "%-21.21s", msgBackup ); DrawStringF(BOT_SCREEN, pos_x1, pos_y0 + (6*stp), COLOR_STATUS(statusInstall), COLOR_STD_BG, "%-21.21s", msgInstall); - DrawStringF(BOT_SCREEN, pos_xb, pos_yu - 10, COLOR_STD_FONT, COLOR_STD_BG, "Usage instructions: https://3ds.guide/"); + DrawStringF(BOT_SCREEN, pos_xb, pos_yu - 10, COLOR_STD_FONT, COLOR_STD_BG, "Usage instructions: https://%s3ds.guide/", IS_DEVKIT ? "dev." : ""); return 0; }