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
|
||||
PUBLIC
|
||||
Math
|
||||
Renderer
|
||||
PRIVATE
|
||||
stb
|
||||
Log
|
||||
|
|
|
@ -38,7 +38,6 @@ target_include_directories(Core SYSTEM PUBLIC
|
|||
target_link_libraries(Core PUBLIC
|
||||
Asset
|
||||
Math
|
||||
Platform
|
||||
Utility
|
||||
nlohmann_json
|
||||
Log
|
||||
|
|
|
@ -24,7 +24,6 @@ static std::map<InputButton, int> inputToKeyCode = { {
|
|||
{InputButton::Backspace, 51},
|
||||
{InputButton::Enter, 36},
|
||||
{InputButton::Space, 49},
|
||||
{InputButton::Ctrl, 17},
|
||||
{InputButton::Shift, 10},
|
||||
{InputButton::A, 0},
|
||||
{InputButton::W, 13},
|
||||
|
|
Reference in a new issue