Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jan 6, 2025
1 parent 5ed11ce commit df5ad7c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Quake/ls_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ int LS_global_expversion(lua_State* state)
++results;
#endif // USE_CODEC_FLAC

#ifdef USE_CODEC_MIKMOD
lua_pushfstring(state, "MikMod %d.%d.%d", LIBMIKMOD_VERSION_MAJOR, LIBMIKMOD_VERSION_MINOR, LIBMIKMOD_REVISION);
++results;
#endif // USE_CODEC_MIKMOD

#ifdef USE_CODEC_MPG123
lua_pushfstring(state, "mpg123 %s", mpg123_distversion(nullptr, nullptr, nullptr));
++results;
Expand All @@ -117,6 +112,16 @@ int LS_global_expversion(lua_State* state)
++results;
#endif // USE_CODEC_XMP

#ifdef USE_CODEC_MIKMOD
lua_pushfstring(state, "MikMod %d.%d.%d", LIBMIKMOD_VERSION_MAJOR, LIBMIKMOD_VERSION_MINOR, LIBMIKMOD_REVISION);
++results;
#endif // USE_CODEC_MIKMOD

#ifdef USE_CODEC_MODPLUG
lua_pushstring(state, "ModPlug");
++results;
#endif // USE_CODEC_MODPLUG

lua_pushstring(state, LUA_RELEASE);
++results;

Expand Down

0 comments on commit df5ad7c

Please sign in to comment.