diff options
| -rw-r--r-- | src/crepe/facade/SDLContext.cpp | 5 | ||||
| -rw-r--r-- | src/crepe/facade/SDLContext.h | 2 | 
2 files changed, 3 insertions, 4 deletions
| diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp index f368828..ada560b 100644 --- a/src/crepe/facade/SDLContext.cpp +++ b/src/crepe/facade/SDLContext.cpp @@ -84,9 +84,8 @@ SDLContext::~SDLContext() {  }  Keycode SDLContext::sdl_to_keycode(SDL_Scancode sdl_key) { -	if (!LOOKUP_TABLE.contains(sdl_key)) return Keycode::NONE; - -	return LOOKUP_TABLE.at(sdl_key); +	if (!lookup_table.contains(sdl_key)) return Keycode::NONE; +	return lookup_table.at(sdl_key);  }  const keyboard_state_t & SDLContext::get_keyboard_state() { diff --git a/src/crepe/facade/SDLContext.h b/src/crepe/facade/SDLContext.h index fc44f82..01d82a0 100644 --- a/src/crepe/facade/SDLContext.h +++ b/src/crepe/facade/SDLContext.h @@ -254,7 +254,7 @@ private:  	//! variable to store the state of each key (true = pressed, false = not pressed)  	keyboard_state_t keyboard_state;  	//! lookup table for converting SDL_SCANCODES to Keycodes -	const std::unordered_map<SDL_Scancode, Keycode> LOOKUP_TABLE +	const std::unordered_map<SDL_Scancode, Keycode> lookup_table  		= {{SDL_SCANCODE_SPACE, Keycode::SPACE},  		   {SDL_SCANCODE_APOSTROPHE, Keycode::APOSTROPHE},  		   {SDL_SCANCODE_COMMA, Keycode::COMMA}, |