AchievementSettings: Move pragma once out of ifdef
Makes the header a little more consistent with others (and also we should still have a header guard be present at all times).
This commit is contained in:
parent
d1b4c5482c
commit
49eadbb824
|
@ -1,9 +1,10 @@
|
||||||
// Copyright 2023 Dolphin Emulator Project
|
// Copyright 2023 Dolphin Emulator Project
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
#ifdef USE_RETRO_ACHIEVEMENTS
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
||||||
|
|
||||||
#include "Common/Config/Config.h"
|
#include "Common/Config/Config.h"
|
||||||
|
|
||||||
namespace Config
|
namespace Config
|
||||||
|
|
Loading…
Reference in New Issue