Switch: Add basic defines for checks/reporting.
This commit is contained in:
parent
9e7625c74b
commit
2eee84b5ce
4 changed files with 6 additions and 0 deletions
|
@ -269,6 +269,8 @@ namespace Reporting
|
||||||
return "Mac";
|
return "Mac";
|
||||||
#elif defined(LOONGSON)
|
#elif defined(LOONGSON)
|
||||||
return "Loongson";
|
return "Loongson";
|
||||||
|
#elif defined(__SWITCH__)
|
||||||
|
return "Switch";
|
||||||
#elif defined(__linux__)
|
#elif defined(__linux__)
|
||||||
return "Linux";
|
return "Linux";
|
||||||
#elif defined(__Bitrig__)
|
#elif defined(__Bitrig__)
|
||||||
|
|
|
@ -849,6 +849,7 @@
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\android\jni\TestRunner.h" />
|
<ClInclude Include="..\android\jni\TestRunner.h" />
|
||||||
<ClInclude Include="..\ios\ViewController.h" />
|
<ClInclude Include="..\ios\ViewController.h" />
|
||||||
|
<ClInclude Include="..\ppsspp_config.h" />
|
||||||
<ClInclude Include="..\Qt\mainwindow.h" />
|
<ClInclude Include="..\Qt\mainwindow.h" />
|
||||||
<ClInclude Include="..\Qt\QtHost.h">
|
<ClInclude Include="..\Qt\QtHost.h">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||||
|
|
|
@ -353,6 +353,7 @@
|
||||||
<ClInclude Include="WASAPIStream.h">
|
<ClInclude Include="WASAPIStream.h">
|
||||||
<Filter>Windows\System</Filter>
|
<Filter>Windows\System</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\ppsspp_config.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="icon1.ico">
|
<None Include="icon1.ico">
|
||||||
|
|
|
@ -110,6 +110,8 @@
|
||||||
#else
|
#else
|
||||||
#error "Unknown Apple platform"
|
#error "Unknown Apple platform"
|
||||||
#endif
|
#endif
|
||||||
|
#elif defined(__SWITCH__)
|
||||||
|
#define PPSSPP_PLATFORM_SWITCH 1
|
||||||
#elif defined(__ANDROID__)
|
#elif defined(__ANDROID__)
|
||||||
#define PPSSPP_PLATFORM_ANDROID 1
|
#define PPSSPP_PLATFORM_ANDROID 1
|
||||||
#define PPSSPP_PLATFORM_LINUX 1
|
#define PPSSPP_PLATFORM_LINUX 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue