Make list fully a mutable map instead of just a map.

This commit is contained in:
Username404-59 2021-04-09 14:04:55 +02:00
parent 42b48f7065
commit 0135d1b6ed
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ object AddKeyMaps {
key, "category.$prefix.$category"
) to lambda
}
val list: Map<KeyMapping, (() -> Unit)?> = mutableMapOf(
val list: MutableMap<KeyMapping, (() -> Unit)?> = mutableMapOf(
mkMap("opengui", GLFW_KEY_Y),
mkMap("configkey", GLFW_KEY_U)
)