Merge pull request #1400 from lioncash/warn

CheatSearchTab: Fix signed/unsigned comparison warning
This commit is contained in:
comex 2014-10-25 16:45:50 -04:00
commit ab7c594b26
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
namespace namespace
{ {
const int MAX_CHEAT_SEARCH_RESULTS_DISPLAY = 1024; const unsigned int MAX_CHEAT_SEARCH_RESULTS_DISPLAY = 1024;
} }
CheatSearchTab::CheatSearchTab(wxWindow* const parent) CheatSearchTab::CheatSearchTab(wxWindow* const parent)