blob: fe894d7b427bb4e4062c85d3f8cb05e4e2744897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <chrono>
class MappingWindow;
namespace MappingCommon
{
// A slight delay improves behavior when "clicking" the detect button via key-press.
static constexpr auto INPUT_DETECT_INITIAL_DELAY = std::chrono::milliseconds{100};
void CreateMappingProcessor(MappingWindow*);
} // namespace MappingCommon
|