Merge branch 'master' into TextEdit

ugfx_release_2.6
Joel Bodenmann 2015-08-17 23:24:30 +02:00
commit 8a10ceb80b
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)