savestate loader in menu
[picodrive.git] / Pico / Area.c
index 23d9af1..e4f680b 100644 (file)
@@ -22,10 +22,11 @@ struct PicoArea { void *data; int len; char *name; };
 // taking an address of fread or fwrite causes "application could't be started" error\r
 // on startup randomly depending on binary layout of executable file.\r
 \r
-arearw   *areaRead  = (arearw *) 0; // fread;  // read and write function pointers for\r
-arearw   *areaWrite = (arearw *) 0; // fwrite; // gzip save state ability\r
-areaeof  *areaEof   = (areaeof *) 0;\r
-areaseek *areaSeek  = (areaseek *) 0;\r
+arearw    *areaRead  = (arearw *) 0; // fread;  // read and write function pointers for\r
+arearw    *areaWrite = (arearw *) 0; // fwrite; // gzip save state ability\r
+areaeof   *areaEof   = (areaeof *) 0;\r
+areaseek  *areaSeek  = (areaseek *) 0;\r
+areaclose *areaClose = (areaclose *) 0;\r
 \r
 \r
 // Scan one variable and callback\r