mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-19 08:50:48 +00:00
Core: Add freelook camera control type setting
This commit is contained in:
parent
6e7d1e0e71
commit
5bd7cc8bac
3 changed files with 6 additions and 1 deletions
|
@ -41,6 +41,8 @@ const Info<bool> GFX_DUMP_EFB_TARGET{{System::GFX, "Settings", "DumpEFBTarget"},
|
|||
const Info<bool> GFX_DUMP_XFB_TARGET{{System::GFX, "Settings", "DumpXFBTarget"}, false};
|
||||
const Info<bool> GFX_DUMP_FRAMES_AS_IMAGES{{System::GFX, "Settings", "DumpFramesAsImages"}, false};
|
||||
const Info<bool> GFX_FREE_LOOK{{System::GFX, "Settings", "FreeLook"}, false};
|
||||
const Info<FreelookControlType> GFX_FREE_LOOK_CONTROL_TYPE{
|
||||
{System::GFX, "Settings", "FreeLookControlType"}, FreelookControlType::SixAxis};
|
||||
const Info<bool> GFX_USE_FFV1{{System::GFX, "Settings", "UseFFV1"}, false};
|
||||
const Info<std::string> GFX_DUMP_FORMAT{{System::GFX, "Settings", "DumpFormat"}, "avi"};
|
||||
const Info<std::string> GFX_DUMP_CODEC{{System::GFX, "Settings", "DumpCodec"}, ""};
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
enum class AspectMode : int;
|
||||
enum class ShaderCompilationMode : int;
|
||||
enum class StereoMode : int;
|
||||
enum class FreelookControlType : int;
|
||||
|
||||
namespace Config
|
||||
{
|
||||
|
@ -41,6 +42,7 @@ extern const Info<bool> GFX_DUMP_EFB_TARGET;
|
|||
extern const Info<bool> GFX_DUMP_XFB_TARGET;
|
||||
extern const Info<bool> GFX_DUMP_FRAMES_AS_IMAGES;
|
||||
extern const Info<bool> GFX_FREE_LOOK;
|
||||
extern const Info<FreelookControlType> GFX_FREE_LOOK_CONTROL_TYPE;
|
||||
extern const Info<bool> GFX_USE_FFV1;
|
||||
extern const Info<std::string> GFX_DUMP_FORMAT;
|
||||
extern const Info<std::string> GFX_DUMP_CODEC;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue