-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[irrlicht] add feature to support unicode path on windows (#9902)
* [irrlicht] add feature to support unicode path on windows * use vcpkg_check_features * fix tools feature
- Loading branch information
1 parent
b9794a5
commit 1be75a2
Showing
4 changed files
with
41 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/include/Keycodes.h b/include/Keycodes.h | ||
index e56eca1..57ab312 100644 | ||
--- a/include/Keycodes.h | ||
+++ b/include/Keycodes.h | ||
@@ -89,7 +89,7 @@ namespace irr | ||
KEY_KEY_X = 0x58, // X key | ||
KEY_KEY_Y = 0x59, // Y key | ||
KEY_KEY_Z = 0x5A, // Z key | ||
- KEY_LWIN = 0x5B, // Left Windows key (MicrosoftŽ NaturalŽ keyboard) | ||
+ KEY_LWIN = 0x5B, // Left Windows key (MicrosoftÂŽ NaturalÂŽ keyboard) | ||
KEY_RWIN = 0x5C, // Right Windows key (Natural keyboard) | ||
KEY_APPS = 0x5D, // Applications key (Natural keyboard) | ||
KEY_SLEEP = 0x5F, // Computer Sleep key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters