REDRIVER2/src_rebuild/redriver2_psxpc.c
Ilya Shurumov 54128aebc6 - implement ShowLoadingScreen
- implement ShowLoading
2020-03-29 04:26:18 +06:00

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();
}