From 1cef2f543333f0dca6a5123103ee4320624b7435 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sun, 2 Jun 2013 11:17:13 -0500 Subject: [PATCH] Write PROGRAM_VERSION_STRING at start of log. --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index bb1084cd3..e51ec0291 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,6 +11,7 @@ #include "platform.h" #include "Log.h" #include "Window.h" +#include "EmulationStation.h" #ifdef _RPI_ #include @@ -109,6 +110,7 @@ int main(int argc, char* argv[]) //start the logger Log::open(); + LOG(LogInfo) << "EmulationStation - " << PROGRAM_VERSION_STRING; //the renderer also takes care of setting up SDL for input and sound bool renderInit = Renderer::init(width, height);