mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-05 22:49:41 +00:00
Merge pull request #2254 from Capostrophic/version
Print SDL version at startup
This commit is contained in:
commit
cc9a6bfcdd
1 changed files with 3 additions and 0 deletions
|
@ -651,6 +651,9 @@ void OMW::Engine::go()
|
||||||
assert (!mContentFiles.empty());
|
assert (!mContentFiles.empty());
|
||||||
|
|
||||||
Log(Debug::Info) << "OSG version: " << osgGetVersion();
|
Log(Debug::Info) << "OSG version: " << osgGetVersion();
|
||||||
|
SDL_version sdlVersion;
|
||||||
|
SDL_GetVersion(&sdlVersion);
|
||||||
|
Log(Debug::Info) << "SDL version: " << (int)sdlVersion.major << "." << (int)sdlVersion.minor << "." << (int)sdlVersion.patch;
|
||||||
|
|
||||||
Misc::Rng::init(mRandomSeed);
|
Misc::Rng::init(mRandomSeed);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue