blob: 5c73c3e962d77c10d459d25843e61b6a6cada9e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2022 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
#include "Common/CommonPaths.h"
static const inline std::string DOLPHIN_SYSTEM_GRAPHICS_MOD_DIR =
LOAD_DIR DIR_SEP GRAPHICSMOD_DIR DIR_SEP;
|