mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 20:25:47 +00:00
Clang Formatting
This commit is contained in:
parent
243dbee81e
commit
77ae7fe5dd
9 changed files with 184 additions and 182 deletions
|
@ -1,11 +1,14 @@
|
|||
// Copyright 2014 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
#include <algorithm>
|
||||
#include <libusb.h>
|
||||
#include <mutex>
|
||||
#include <functional>
|
||||
#include <mutex>
|
||||
#include <libusb.h>
|
||||
#include "common/common_types.h"
|
||||
|
||||
|
||||
enum {
|
||||
PAD_USE_ORIGIN = 0x0080,
|
||||
PAD_GET_ORIGIN = 0x2000,
|
||||
|
@ -61,13 +64,8 @@ struct GCState {
|
|||
std::unordered_map<int, u16> axes;
|
||||
};
|
||||
|
||||
|
||||
namespace GCAdapter {
|
||||
enum ControllerTypes {
|
||||
CONTROLLER_NONE = 0,
|
||||
CONTROLLER_WIRED = 1,
|
||||
CONTROLLER_WIRELESS = 2
|
||||
};
|
||||
enum ControllerTypes { CONTROLLER_NONE = 0, CONTROLLER_WIRED = 1, CONTROLLER_WIRELESS = 2 };
|
||||
|
||||
enum {
|
||||
NO_ADAPTER_DETECTED = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue