Remove faulty ctrl detection on macos preventing t from being inputted
This commit is contained in:
parent
615a6605ab
commit
219751a05d
3 changed files with 1 additions and 2 deletions
|
@ -11,6 +11,7 @@ target_include_directories(Asset PUBLIC include)
|
||||||
target_link_libraries(Asset
|
target_link_libraries(Asset
|
||||||
PUBLIC
|
PUBLIC
|
||||||
Math
|
Math
|
||||||
|
Renderer
|
||||||
PRIVATE
|
PRIVATE
|
||||||
stb
|
stb
|
||||||
Log
|
Log
|
||||||
|
|
|
@ -38,7 +38,6 @@ target_include_directories(Core SYSTEM PUBLIC
|
||||||
target_link_libraries(Core PUBLIC
|
target_link_libraries(Core PUBLIC
|
||||||
Asset
|
Asset
|
||||||
Math
|
Math
|
||||||
Platform
|
|
||||||
Utility
|
Utility
|
||||||
nlohmann_json
|
nlohmann_json
|
||||||
Log
|
Log
|
||||||
|
|
|
@ -24,7 +24,6 @@ static std::map<InputButton, int> inputToKeyCode = { {
|
||||||
{InputButton::Backspace, 51},
|
{InputButton::Backspace, 51},
|
||||||
{InputButton::Enter, 36},
|
{InputButton::Enter, 36},
|
||||||
{InputButton::Space, 49},
|
{InputButton::Space, 49},
|
||||||
{InputButton::Ctrl, 17},
|
|
||||||
{InputButton::Shift, 10},
|
{InputButton::Shift, 10},
|
||||||
{InputButton::A, 0},
|
{InputButton::A, 0},
|
||||||
{InputButton::W, 13},
|
{InputButton::W, 13},
|
||||||
|
|
Reference in a new issue