mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
e88c457276
Without the include, the prototypes of the functions can't be found
20 lines
427 B
C++
20 lines
427 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "DolphinWX/UINeedsControllerState.h"
|
|
|
|
#include <atomic>
|
|
|
|
static std::atomic<bool> s_needs_controller_state{false};
|
|
|
|
void SetUINeedsControllerState(bool needs_controller_state)
|
|
{
|
|
s_needs_controller_state = needs_controller_state;
|
|
}
|
|
|
|
bool GetUINeedsControllerState()
|
|
{
|
|
return s_needs_controller_state;
|
|
}
|