Skip to content

Commit

Permalink
Changed warning message, settings for x64 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
morsisko committed Oct 25, 2020
1 parent 6196bb9 commit 1e9c1c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xSelectBlock/SelectBlockDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
auto end = getStopAddress(hwndDlg);

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

else if (!Script::Gui::Dump::SelectionSet(start, end))
MessageBoxA(dialog, "Couldn't set your selection. Maybe those values are out of bounds for this memory page?", "Couldn't select", MB_ICONWARNING);
Expand Down
4 changes: 2 additions & 2 deletions xSelectBlock/xSelectBlock.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120_xp</PlatformToolset>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120_xp</PlatformToolset>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
Expand Down

0 comments on commit 1e9c1c5

Please sign in to comment.