move more globals to PicoInterface

similar reasons as before
This commit is contained in:
notaz 2017-10-22 02:04:26 +03:00
parent 075672bf9f
commit 6311a3baf5
27 changed files with 244 additions and 247 deletions

View file

@ -391,8 +391,8 @@ int pm_seek(pm_file *stream, long offset, int whence)
offset = pos;
}
if (PicoMessage != NULL && offset > 4 * 1024 * 1024)
PicoMessage("Decompressing data...");
if (PicoIn.osdMessage != NULL && offset > 4 * 1024 * 1024)
PicoIn.osdMessage("Decompressing data...");
while (offset > 0) {
char buf[16 * 1024];