egldisplay: Fix bad use of X11 None symbol instead of nullptr

This commit is contained in:
rdb 2020-09-16 23:39:13 +02:00
parent 5d0044a481
commit 4b7e32e9b0

View File

@ -172,7 +172,7 @@ open_buffer() {
}
}
if (eglgsg->_fbconfig == None) {
if (eglgsg->_fbconfig == nullptr) {
// If we didn't use an fbconfig to create the GSG, we can't create a
// PBuffer.
return false;