mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
54128aebc6
- implement ShowLoading
23 lines
325 B
C
23 lines
325 B
C
// redriver2_psxpc.cpp
|
|
//
|
|
|
|
#include "GAME/C/MAIN.H"
|
|
#include "EMULATOR.H"
|
|
#include "EMULATOR_PRIVATE.H"
|
|
|
|
int(*GPU_printf)(const char *fmt, ...);
|
|
|
|
int main()
|
|
{
|
|
//g_texturelessMode = 1;
|
|
//g_wireframeMode = 1;
|
|
|
|
GPU_printf = printf;
|
|
|
|
Emulator_Initialise("DRIVER 2", 800, 600);
|
|
|
|
redriver2_main();
|
|
|
|
Emulator_ShutDown();
|
|
}
|