mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 21:07:42 +00:00
Fix command line args on macOS when passed via open, implement CScriptCameraPitchVolume
This commit is contained in:
@@ -34,6 +34,7 @@
|
||||
#include "Tweaks/CTweakSlideShow.hpp"
|
||||
#include "Tweaks/CTweakGame.hpp"
|
||||
#include "Tweaks/CTweakTargeting.hpp"
|
||||
#include "Tweaks/CTweakGui.hpp"
|
||||
|
||||
namespace DataSpec
|
||||
{
|
||||
@@ -388,6 +389,8 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK& pak, const PAK::En
|
||||
return {ExtractTweak<CTweakGame>, {_S(".yaml")}};
|
||||
if (!name.compare("Targeting"))
|
||||
return {ExtractTweak<CTweakTargeting>, {_S(".yaml")}};
|
||||
if (!name.compare("Gui"))
|
||||
return {ExtractTweak<CTweakGui>, {_S(".yaml")}};
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef _DNAMP1_CTWEAKGAME_HPP_
|
||||
#define _DNAMP1_CTWEAKGAME_HPP_
|
||||
#ifndef _DNAMP1_CTWEAKGUI_HPP_
|
||||
#define _DNAMP1_CTWEAKGUI_HPP_
|
||||
|
||||
#include "../../DNACommon/Tweaks/ITweakGui.hpp"
|
||||
|
||||
@@ -7,7 +7,6 @@ namespace DataSpec
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
|
||||
struct CTweakGui : ITweakGui
|
||||
{
|
||||
DECL_YAML
|
||||
@@ -232,4 +231,4 @@ struct CTweakGui : ITweakGui
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // _DNAMP1_CTWEAKGUI_HPP_
|
||||
|
||||
Reference in New Issue
Block a user