65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
consoleUpdate(NULL);
[lastConsoleUpdate release];
lastConsoleUpdate = [[OFDate alloc] init];
}
}
#endif
extern unsigned long OFHashSeed;
#ifdef OF_PSP
static int
exitCallback(int arg1, int arg2, void *arg)
{
sceKernelExitGame();
|
>
>
>
>
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
consoleUpdate(NULL);
[lastConsoleUpdate release];
lastConsoleUpdate = [[OFDate alloc] init];
}
}
#endif
#ifdef OF_AMIGAOS
extern unsigned long *OFHashSeedRef(void);
#else
extern unsigned long OFHashSeed;
#endif
#ifdef OF_PSP
static int
exitCallback(int arg1, int arg2, void *arg)
{
sceKernelExitGame();
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
* Calling objc_deinit() via atexit() would result in the runtime being
* destructed before for the destructors ran.
*/
atexit(objc_deinit);
#endif
/* We need deterministic hashes for tests */
OFHashSeed = 0;
#ifdef OF_WII
GXRModeObj *rmode;
void *xfb;
VIDEO_Init();
WPAD_Init();
|
>
>
>
>
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
* Calling objc_deinit() via atexit() would result in the runtime being
* destructed before for the destructors ran.
*/
atexit(objc_deinit);
#endif
/* We need deterministic hashes for tests */
#ifdef OF_AMIGAOS
*OFHashSeedRef() = 0;
#else
OFHashSeed = 0;
#endif
#ifdef OF_WII
GXRModeObj *rmode;
void *xfb;
VIDEO_Init();
WPAD_Init();
|