GDRIVER bugfix. Thanks to David.

ugfx_release_2.6
Joel Bodenmann 2015-08-17 23:24:18 +02:00
parent 28a2d8ca79
commit 9a410b29e3
1 changed files with 4 additions and 2 deletions

View File

@ -53,10 +53,12 @@ GDriver *gdriverRegister(const GDriverVMT *vmt, void *param) {
}
// Add it to the driver chain
if (dhead)
if (dhead) {
dtail->driverchain = pd;
else
dtail = pd;
} else {
dhead = dtail = pd;
}
// Do the post init
if (vmt->postinit)