Make sure the window still exists before we access the dimensions on it
This commit is contained in:
parent
608b4fb28d
commit
46a625dde5
|
@ -386,6 +386,8 @@ static void onContentRectChanged(ANativeActivity* activity, const ARect* rect)
|
|||
sf::priv::ActivityStates* states = sf::priv::retrieveStates(activity);
|
||||
sf::Lock lock(states->mutex);
|
||||
|
||||
// Make sure the window still exists before we access the dimensions on it
|
||||
if (states->window != NULL) {
|
||||
// Send an event to warn people about the window move/resize
|
||||
sf::Event event;
|
||||
event.type = sf::Event::Resized;
|
||||
|
@ -394,6 +396,7 @@ static void onContentRectChanged(ANativeActivity* activity, const ARect* rect)
|
|||
|
||||
states->forwardEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue