Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding missing class to VS project.
Browse files Browse the repository at this point in the history
sa666666 committed Aug 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 36ebe43 commit 2421292
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/debugger/gui/CartELFWidget.cxx
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@
#include "ScrollBarWidget.hxx"
#include "StringListWidget.hxx"

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CartridgeELFWidget::CartridgeELFWidget(GuiObject* boss, const GUI::Font& lfont,
const GUI::Font& nfont,
int x, int y, int w, int h,
2 changes: 1 addition & 1 deletion src/emucore/CortexM0.cxx
Original file line number Diff line number Diff line change
@@ -689,7 +689,7 @@ void CortexM0::MemoryRegion::reset()
access.emplace<std::monostate>();

accessWatermarkHigh = 0;
accessWatermarkLow = ~0;
accessWatermarkLow = ~0U;
dirty = false;
}

2 changes: 2 additions & 0 deletions src/os/windows/Stella.vcxproj
Original file line number Diff line number Diff line change
@@ -547,6 +547,7 @@
<ClCompile Include="..\..\debugger\gui\CartEFWidget.cxx">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug-NoDebugger|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\debugger\gui\CartELFWidget.cxx" />
<ClCompile Include="..\..\debugger\gui\CartEnhancedWidget.cxx">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug-NoDebugger|x64'">true</ExcludedFromBuild>
</ClCompile>
@@ -1519,6 +1520,7 @@
<ClInclude Include="..\..\debugger\gui\CartEFWidget.hxx">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug-NoDebugger|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\debugger\gui\CartELFWidget.hxx" />
<ClInclude Include="..\..\debugger\gui\CartEnhancedWidget.hxx">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug-NoDebugger|x64'">true</ExcludedFromBuild>
</ClInclude>
6 changes: 6 additions & 0 deletions src/os/windows/Stella.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -1266,6 +1266,9 @@
<ClCompile Include="..\..\emucore\CortexM0.cxx">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\debugger\gui\CartELFWidget.cxx">
<Filter>Source Files\debugger\gui</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\emucore\AtariVox.hxx">
@@ -2564,6 +2567,9 @@
<ClInclude Include="..\..\lib\json\json.hpp">
<Filter>Header Files\lib\json</Filter>
</ClInclude>
<ClInclude Include="..\..\debugger\gui\CartELFWidget.hxx">
<Filter>Header Files\debugger\gui</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="stella.ico">

0 comments on commit 2421292

Please sign in to comment.