Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InputCommon: Move ControllerEmu to its own directory #4789

Merged
merged 2 commits into from
Feb 8, 2017

Commits on Feb 8, 2017

  1. ControllerEmu: Move into its own directory

    ControllerEmu is a massive class with a lot of nested public classes.
    
    The only reason these are nested is because the outer class acts as a
    namespace. There's no reason to keep these classes nested just for that.
    
    Keeping these classes nested makes it impossible to forward declare them, which leads to quite a few includes in other headers, making compilation take
    longer.
    
    This moves the source files to their own directory so classes can be
    separated as necessary to their own source files, and be namespaced under the
    ControllerEmu namespace.
    lioncash committed Feb 8, 2017
    Configuration menu
    Copy the full SHA
    3a66f2c View commit details
    Browse the repository at this point in the history
  2. InputCommon CMakeLists: Normalize whitespace

    Tabs -> Spaces
    lioncash committed Feb 8, 2017
    Configuration menu
    Copy the full SHA
    31f037b View commit details
    Browse the repository at this point in the history