print emulator version when it initializes, just because it is handy
This commit is contained in:
parent
b1df012477
commit
1adb24e67d
|
@ -40,6 +40,7 @@
|
||||||
#include "readwrite.h"
|
#include "readwrite.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "firmware.h"
|
#include "firmware.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
#include "path.h"
|
#include "path.h"
|
||||||
|
|
||||||
|
@ -109,6 +110,9 @@ int NDS_Init( void) {
|
||||||
MMU_Init();
|
MMU_Init();
|
||||||
nds.VCount = 0;
|
nds.VCount = 0;
|
||||||
|
|
||||||
|
//got to print this somewhere..
|
||||||
|
printf(EMU_DESMUME_NAME_AND_VERSION());
|
||||||
|
|
||||||
if (Screen_Init(GFXCORE_DUMMY) != 0)
|
if (Screen_Init(GFXCORE_DUMMY) != 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue