switched up some pointers to shared, added some more rendering example

This commit is contained in:
2021-12-06 23:38:36 -05:00
parent 994a128c14
commit ea172110ea
14 changed files with 43 additions and 48 deletions

View File

@@ -290,6 +290,5 @@ InputProcessorKeycode SdlInputProcessor::get_keycode(SDL_Keycode keycode) {
if(this->keycode_map.find(keycode) == this->keycode_map.end()) {
return KEY_UNKNOWN;
}
printf("Detected keypress for %i\n", this->keycode_map[keycode]);
return this->keycode_map[keycode];
}