From 1adb24e67d3b877baa7b90c606db255788b94192 Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 7 Jul 2010 22:37:23 +0000 Subject: [PATCH] print emulator version when it initializes, just because it is handy --- desmume/src/NDSSystem.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/desmume/src/NDSSystem.cpp b/desmume/src/NDSSystem.cpp index e1e7356e3..d159f3db5 100644 --- a/desmume/src/NDSSystem.cpp +++ b/desmume/src/NDSSystem.cpp @@ -40,6 +40,7 @@ #include "readwrite.h" #include "debug.h" #include "firmware.h" +#include "version.h" #include "path.h" @@ -109,6 +110,9 @@ int NDS_Init( void) { MMU_Init(); nds.VCount = 0; + //got to print this somewhere.. + printf(EMU_DESMUME_NAME_AND_VERSION()); + if (Screen_Init(GFXCORE_DUMMY) != 0) return -1;