mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Small warning fix.
This commit is contained in:
parent
0b3fe61a35
commit
1284b109d0
@ -416,7 +416,7 @@ void JoystickHistoryView::Draw(UIContext &dc) {
|
||||
|
||||
void JoystickHistoryView::Update(const InputState &input_state) {
|
||||
locations_.push_back(Location(curX_, curY_));
|
||||
if (locations_.size() > maxCount_) {
|
||||
if ((int)locations_.size() > maxCount_) {
|
||||
locations_.pop_front();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user