mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-29 09:35:39 +00:00
(Windows) Fixed an MSVC compiler warning.
This commit is contained in:
parent
3cb0b6a644
commit
b1dd2dd176
|
@ -156,7 +156,7 @@ public:
|
||||||
return GuiComponent::input(config, input);
|
return GuiComponent::input(config, input);
|
||||||
}
|
}
|
||||||
|
|
||||||
const int getNumEntries() { return mEntries.size(); }
|
const int getNumEntries() { return static_cast<int>(mEntries.size()); }
|
||||||
|
|
||||||
std::vector<T> getSelectedObjects()
|
std::vector<T> getSelectedObjects()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue