diff options
| author | Joost Peters | 2009-02-21 12:08:52 +0000 |
|---|---|---|
| committer | Joost Peters | 2009-02-21 12:08:52 +0000 |
| commit | 2784e08a90c1279e431374051ee5515010eabefd (patch) | |
| tree | 7fdca849c4250dbbc660aa2c977b094904fbf6a5 | |
| parent | f582debaa926297158a0baed9484a09153806060 (diff) | |
| download | scummvm-rg350-2784e08a90c1279e431374051ee5515010eabefd.tar.gz scummvm-rg350-2784e08a90c1279e431374051ee5515010eabefd.tar.bz2 scummvm-rg350-2784e08a90c1279e431374051ee5515010eabefd.zip | |
disable BREAKPOINT macro and remove exit() macro, as they conflict with SCI building (and aren't used anymore anyway)
svn-id: r38687
| -rw-r--r-- | backends/platform/psp/portdefs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/platform/psp/portdefs.h b/backends/platform/psp/portdefs.h index 1708a70c74..bf7ed41e25 100644 --- a/backends/platform/psp/portdefs.h +++ b/backends/platform/psp/portdefs.h @@ -44,11 +44,10 @@ #include "trace.h" -#define BREAKPOINT asm("break\n") +//#define BREAKPOINT asm("break\n") //#define printf pspDebugScreenPrintf -#define exit(x) printf("exit() called\n"); sceKernelSleepThread(); #endif /* PORTDEFS_H */ |
