mirror of https://github.com/stella-emu/stella.git
Adding missing class to VS project.
This commit is contained in:
parent
36ebe43f16
commit
2421292c83
|
@ -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,
|
||||
|
|
|
@ -689,7 +689,7 @@ void CortexM0::MemoryRegion::reset()
|
|||
access.emplace<std::monostate>();
|
||||
|
||||
accessWatermarkHigh = 0;
|
||||
accessWatermarkLow = ~0;
|
||||
accessWatermarkLow = ~0U;
|
||||
dirty = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue