mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-13 05:56:51 +03:00
CheatSearchTab: Fix signed/unsigned comparison warning
This commit is contained in:
parent
10c3896421
commit
51a96297e6
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue