Skip to content

Commit 1e9c1c5

Browse files
committed
Changed warning message, settings for x64 compilation
1 parent 6196bb9 commit 1e9c1c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

xSelectBlock/SelectBlockDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
319319
auto end = getStopAddress(hwndDlg);
320320

321321
if (start > end)
322-
MessageBoxA(dialog, "Start address couldn't be higher than stop address", "Wrong data", MB_ICONWARNING);
322+
MessageBoxA(dialog, "Start address can't be higher than stop address", "Wrong data", MB_ICONWARNING);
323323

324324
else if (!Script::Gui::Dump::SelectionSet(start, end))
325325
MessageBoxA(dialog, "Couldn't set your selection. Maybe those values are out of bounds for this memory page?", "Couldn't select", MB_ICONWARNING);

xSelectBlock/xSelectBlock.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4343
<ConfigurationType>DynamicLibrary</ConfigurationType>
4444
<UseDebugLibraries>false</UseDebugLibraries>
45-
<PlatformToolset>v120_xp</PlatformToolset>
45+
<PlatformToolset>v140</PlatformToolset>
4646
<WholeProgramOptimization>true</WholeProgramOptimization>
4747
<CharacterSet>MultiByte</CharacterSet>
4848
</PropertyGroup>
4949
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5050
<ConfigurationType>DynamicLibrary</ConfigurationType>
5151
<UseDebugLibraries>false</UseDebugLibraries>
52-
<PlatformToolset>v120_xp</PlatformToolset>
52+
<PlatformToolset>v140</PlatformToolset>
5353
<WholeProgramOptimization>true</WholeProgramOptimization>
5454
<CharacterSet>MultiByte</CharacterSet>
5555
</PropertyGroup>

0 commit comments

Comments
 (0)