If I am doing a lot of processing in an AGSE_SAVEGAME event handler, potentially enough to cause sound skipping, is it safe to call the PollSystem() method to avoid the sound skip?
PollSystem() deals with entirely asynchronous events that are not part of game loops so it should be safe to call it from anywhere. At least that is my understanding.