* Improved renderer performance for shadow/hilight mode.\r
* Added a hack for YM2612 frequency overflow issue (bleep noises\r
in Shaq Fu, Spider-Man - The Animated Series (intro music), etc.)\r
- Credits to Nemesis @ spritesmind forum. Works only sound rate\r
+ Credits to Nemesis @ spritesmind forum. Works only if sound rate\r
is set to 44kHz.\r
+ Implemented some sprite rendering improvements, as suggested by\r
Exophase. Games with lots of sprites now perform better.\r
* Fixed a bug in Sega CD savestate loader, where the game would\r
sometimes crash after load.\r
* Fixed a crash of games using eeprom (introduced in 1.40b).\r
+ * PSP: fixed suspend/resume (hopefully for real).\r
\r
1.40c\r
* Fixed a problem with sound in Marble Madness.\r
#include "../common/emu.h"
#include "../common/config.h"
#include "../common/lprintf.h"
-#include "version.h"
#ifdef GPROF
#include <pspprof.h>
int pico_main(void)
{
- lprintf("\nPicoDrive v" VERSION " " __DATE__ " " __TIME__ "\n");
psp_init();
emu_prepareDefaultConfig();
break;
case PGS_Suspending:
- while (engineState == PGS_Suspending)
+ while (engineState == PGS_Suspending || engineState == PGS_SuspendAck) {
+ if (engineState == PGS_Suspending)
+ engineState = PGS_SuspendAck;
psp_wait_suspend();
+ }
break;
case PGS_RestartRun:
#include "psp.h"
#include "emu.h"
#include "../common/lprintf.h"
+#include "version.h"
extern int pico_main(void);
#ifndef FW15
-PSP_MODULE_INFO("PicoDrive", 0, 1, 40);
+PSP_MODULE_INFO("PicoDrive", 0, 1, 50);
PSP_HEAP_SIZE_MAX();
int main() { return pico_main(); } /* just a wrapper */
#else
-PSP_MODULE_INFO("PicoDrive", 0x1000, 1, 40);
+PSP_MODULE_INFO("PicoDrive", 0x1000, 1, 50);
PSP_MAIN_THREAD_ATTR(0);
int main()
static int power_callback(int unknown, int pwrflags, void *common)
{
static int old_state = PGS_Menu;
+ int i;
lprintf("power_callback: flags: 0x%08X\n", pwrflags);
/* check for power switch and suspending as one is manual and the other automatic */
if (pwrflags & PSP_POWER_CB_POWER_SWITCH || pwrflags & PSP_POWER_CB_SUSPENDING || pwrflags & PSP_POWER_CB_STANDBY)
{
- if (engineState != PGS_Suspending) {
+ if (engineState != PGS_Suspending && engineState != PGS_SuspendAck) {
old_state = engineState;
engineState = PGS_Suspending;
}
+ for (i = 0; i < 10 && engineState != PGS_SuspendAck; i++)
+ sceKernelDelayThread(100*1024);
+
}
else if (pwrflags & PSP_POWER_CB_RESUME_COMPLETE)
{
main_thread_id = sceKernelGetThreadId();
+ lprintf("\n%s\n", "PicoDrive v" VERSION " " __DATE__ " " __TIME__);
lprintf("running on %08x kernel\n", sceKernelDevkitVersion()),
lprintf("entered psp_init, threadId %08x, priority %i\n", main_thread_id,
sceKernelGetThreadCurrentPriority());
static log_entry *le_root = NULL;
#endif
+/* strange: if this function leaks memory (before psp_init() call?),
+ * resume after suspend breaks on 3.90 */
void lprintf(const char *fmt, ...)
{
va_list vl;