emulator opengl: fixed wrong delete

Solves a crash in Replica Island.

Change-Id: Id085cc2c88d0e3bdbf59f43882b7397b15ded05c
This commit is contained in:
Guy Zadikario
2011-06-15 13:27:02 +03:00
committed by Guy Zadickario
parent 0536060b40
commit a0b0d08e17

View File

@@ -48,7 +48,7 @@ public:
}
~GLDecoderContextData() {
delete m_pointerData;
delete [] m_pointerData;
}
void storePointerData(unsigned int loc, void *data, size_t len) {