Check for NULL flipchain and just return the current surface if it
happens.
This commit is contained in:
parent
fb2273be7e
commit
5d760b1ca8
|
@ -88,6 +88,11 @@ IDirectDrawSurface4Impl* _common_find_flipto(
|
||||||
int i,j,flipable=0;
|
int i,j,flipable=0;
|
||||||
struct _surface_chain *chain = This->s.chain;
|
struct _surface_chain *chain = This->s.chain;
|
||||||
|
|
||||||
|
if (!chain) {
|
||||||
|
ERR("No flip chain? -> returning This.\n");
|
||||||
|
return This;
|
||||||
|
}
|
||||||
|
|
||||||
/* if there was no override flipto, look for current backbuffer */
|
/* if there was no override flipto, look for current backbuffer */
|
||||||
if (!flipto) {
|
if (!flipto) {
|
||||||
/* walk the flip chain looking for backbuffer */
|
/* walk the flip chain looking for backbuffer */
|
||||||
|
|
Loading…
Reference in New Issue