changeset 125:5102ec9e9bce

Add a blurb about used features/3rd party code (zlib, Tremor, SDL).
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 04 Oct 2012 05:38:08 +0300
parents d5cfd29c87c4
children 97488948215c afa28947e400
files dmsimple.c
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dmsimple.c	Thu Oct 04 05:37:26 2012 +0300
+++ b/dmsimple.c	Thu Oct 04 05:38:08 2012 +0300
@@ -438,6 +438,19 @@
     "TNSP simple demoengine initializing.\n"
     "%s\n",
     dmProgDesc, dmProgAuthor);
+
+    dmPrint(0,
+    "Using libSDL, "
+#ifdef DM_USE_TREMOR
+    "Tremor Vorbis codec"
+#endif
+#ifdef DM_USE_PACKFS
+    ", zlib and modified stb_image.\n"
+#else
+    " and modified stb_image.\n"
+#endif
+    "See README.txt for more information.\n");
+
     // Initialize resource subsystem
     dmPrint(1, "Initializing resources subsystem.\n");
     if ((err = dmres_init(engine.optPackFilename, engine.optDataPath, engine.optResFlags, engineClassifier)) != DMERR_OK)