HashlinkHelper, PlatformSetup: proper casing in user-facing messages for HashLink name

This commit is contained in:
Josh Tynjala
2024-11-13 11:13:16 -08:00
parent 4e56bd9bf2
commit 19b571d8c2
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ class HashlinkHelper
case MAC: "Mac";
case WINDOWS: "Windows";
default:
Log.error('Hashlink is not supported on ${project.target} (Supported: Windows, Mac and Linux)');
Log.error('HashLink is not supported on ${project.target} (Supported: Windows, Mac and Linux)');
Sys.exit(1);
"";
};

View File

@@ -1239,13 +1239,13 @@ class PlatformSetup
public static function setupHL():Void
{
getDefineValue("HL_PATH", "Absolute path to a custom version of Hashlink. Leave empty to use lime's default version.");
getDefineValue("HL_PATH", "Absolute path to a custom version of HashLink. Leave empty to use lime's default version.");
if (System.hostPlatform == MAC)
{
Log.println("To use the hashlink debugger on macOS, the hl executable needs to be signed.");
Log.println("To use the HashLink debugger on macOS, the hl executable needs to be signed.");
if (ConfigHelper.getConfigValue("HL_PATH") != null)
{
Log.println("When building HL from source, make sure to have run `make codesign_osx` before installing.");
Log.println("When building HashLink from source, make sure to have run `make codesign_osx` before installing.");
}
else
{