Show
Ignore:
Timestamp:
02/09/12 05:32:07 (4 months ago)
Author:
aldacron
Message:

[Derelict2 - DerelictGL]
* really, really fixed the regression I thought I had fixed in the last commit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Derelict2/DerelictGL/derelict/opengl/extloader.d

    r625 r626  
    147147        bool verify(string s) 
    148148        { 
    149             auto idx = index + s.length; 
    150             if(extStr[idx] == ' ' || extStr[idx] == '\0') 
     149            auto idx = index + extName.length; 
     150            if(s[idx] == ' ' || s[idx] == '\0') 
    151151                return true; 
    152152            return false;