9 lines
170 B
Haskell
9 lines
170 B
Haskell
module Dodge.ScodeToChar
|
|
where
|
|
import SDL
|
|
|
|
-- | hacky - no longer used
|
|
scodeToChar :: Scancode -> Char
|
|
scodeToChar = toEnum . (+ 61) . fromIntegral . unwrapScancode
|
|
|