gdriver bugfix

This commit is contained in:
inmarket 2014-09-26 18:23:41 +10:00
parent 8926f56bab
commit ca71163aa0

View File

@ -56,7 +56,7 @@ GDriver *gdriverRegister(const GDriverVMT *vmt, void *param) {
if (dhead)
dtail->driverchain = pd;
else
dhead = pd;
dhead = dtail = pd;
// Do the post init
if (vmt->postinit)