We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efc4b8 commit 1b51f41Copy full SHA for 1b51f41
1 file changed
src/libretro.c
@@ -442,7 +442,10 @@ void retro_get_system_info(struct retro_system_info *info)
442
{
443
memset(info, 0, sizeof(*info));
444
info->library_name = "FreeIntv";
445
- info->library_version = "1.2";
+#ifndef GIT_VERSION
446
+#define GIT_VERSION ""
447
+#endif
448
+ info->library_version = "1.2 " GIT_VERSION;
449
info->valid_extensions = "int|bin|rom";
450
info->need_fullpath = true;
451
}
0 commit comments