some fixes (vector mem access)

git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@99 4df4b0f3-56ce-47cb-b001-ed939b7d65a6
This commit is contained in:
albertzeyer
2009-07-22 16:57:53 +00:00
parent dc8b9972e6
commit 342d9ffab9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ bool CEGAGraphics::loadData()
char *data;
data = new char[databuf.size()];
memcpy(data, databuf.data(), databuf.size());
memcpy(data, &databuf[0], databuf.size());
// Now copy the data to the EGAHEAD Structure
memcpy(&LatchPlaneSize,data,4);