Pro Mini 5v/16mhz + Adafruit ks0108 LCD

The pro mini has the same pinout as the uno as far as I was aware, yet it won't work with my ks0108 LCD. I've triple checked the wiring and still can't get it working for some reason. Any ideas where to start looking? I'm using the glcd3 linked from the arduino wiki for the ks0108.

Resolved!

Moved the EN pin from A4 to A5 and moved the pin number up one in the ks0108_Arduino.h file on line 49.

Original: #define glcdEN 18
Fixed: #define glcdEN 19

Not sure why A4 isn't working for this but I guess it works so no complaints from me.