Use sc_ prefix for controller

This commit is contained in:
Romain Vimont 2022-01-14 22:17:30 +01:00
commit 3a4d5c7f18
10 changed files with 75 additions and 74 deletions

View file

@ -14,7 +14,7 @@
#include "trait/mouse_processor.h"
struct sc_input_manager {
struct controller *controller;
struct sc_controller *controller;
struct sc_screen *screen;
struct sc_key_processor *kp;
@ -43,7 +43,7 @@ struct sc_input_manager {
};
struct sc_input_manager_params {
struct controller *controller;
struct sc_controller *controller;
struct sc_screen *screen;
struct sc_key_processor *kp;
struct sc_mouse_processor *mp;