mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
Core: Add resources file
Currently includes a crosshair icon.
This commit is contained in:
parent
ed6065d7f5
commit
f0c1dfefe7
|
@ -64,6 +64,8 @@ add_library(core
|
|||
playstation_mouse.h
|
||||
psf_loader.cpp
|
||||
psf_loader.h
|
||||
resources.cpp
|
||||
resources.h
|
||||
save_state_version.h
|
||||
settings.cpp
|
||||
settings.h
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
<ClCompile Include="controller.cpp" />
|
||||
<ClCompile Include="playstation_mouse.cpp" />
|
||||
<ClCompile Include="psf_loader.cpp" />
|
||||
<ClCompile Include="resources.cpp" />
|
||||
<ClCompile Include="settings.cpp" />
|
||||
<ClCompile Include="sio.cpp" />
|
||||
<ClCompile Include="spu.cpp" />
|
||||
|
@ -126,6 +127,7 @@
|
|||
<ClInclude Include="controller.h" />
|
||||
<ClInclude Include="playstation_mouse.h" />
|
||||
<ClInclude Include="psf_loader.h" />
|
||||
<ClInclude Include="resources.h" />
|
||||
<ClInclude Include="save_state_version.h" />
|
||||
<ClInclude Include="settings.h" />
|
||||
<ClInclude Include="sio.h" />
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
<ClCompile Include="playstation_mouse.cpp" />
|
||||
<ClCompile Include="negcon.cpp" />
|
||||
<ClCompile Include="gpu_hw_vulkan.cpp" />
|
||||
<ClCompile Include="resources.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="types.h" />
|
||||
|
@ -91,6 +92,7 @@
|
|||
<ClInclude Include="playstation_mouse.h" />
|
||||
<ClInclude Include="negcon.h" />
|
||||
<ClInclude Include="gpu_hw_vulkan.h" />
|
||||
<ClInclude Include="resources.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="cpu_core.inl" />
|
||||
|
|
1031
src/core/resources.cpp
Normal file
1031
src/core/resources.cpp
Normal file
File diff suppressed because it is too large
Load diff
12
src/core/resources.h
Normal file
12
src/core/resources.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
#include "types.h"
|
||||
#include <array>
|
||||
|
||||
namespace Resources {
|
||||
|
||||
// Adapted from https://icons8.com/icon/15970/target
|
||||
constexpr u32 CROSSHAIR_IMAGE_WIDTH = 96;
|
||||
constexpr u32 CROSSHAIR_IMAGE_HEIGHT = 96;
|
||||
extern const std::array<u32, CROSSHAIR_IMAGE_WIDTH * CROSSHAIR_IMAGE_HEIGHT> CROSSHAIR_IMAGE_DATA;
|
||||
|
||||
} // namespace Resources
|
Loading…
Reference in a new issue