More pretty printing of the versione name.

This commit is contained in:
riccardom 2010-07-07 22:50:13 +00:00
parent 1adb24e67d
commit 97d601d2cd
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ int NDS_Init( void) {
nds.VCount = 0;
//got to print this somewhere..
printf(EMU_DESMUME_NAME_AND_VERSION());
printf("%s\n", EMU_DESMUME_NAME_AND_VERSION());
if (Screen_Init(GFXCORE_DUMMY) != 0)
return -1;

View File

@ -85,7 +85,7 @@
#define DESMUME_VERSION_NUMERIC 90600
#define DESMUME_VERSION_STRING " " "0.9.6" DESMUME_SUBVERSION_STRING DESMUME_FEATURE_STRING DESMUME_PLATFORM_STRING DESMUME_CPUEXT_STRING DESMUME_COMPILER
#define DESMUME_NAME_AND_VERSION " " DESMUME_NAME DESMUME_VERSION_STRING
#define DESMUME_NAME_AND_VERSION DESMUME_NAME DESMUME_VERSION_STRING
u32 EMU_DESMUME_VERSION_NUMERIC() { return DESMUME_VERSION_NUMERIC; }
const char* EMU_DESMUME_VERSION_STRING() { return DESMUME_VERSION_STRING; }