2017-07-21 05:52:50 +01:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <core/hle/lock.h>
|
|
|
|
|
|
|
|
namespace HLE {
|
2017-08-29 09:39:55 +01:00
|
|
|
std::recursive_mutex g_hle_lock;
|
2017-10-21 13:59:14 +01:00
|
|
|
} // namespace HLE
|