Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
retro-wertz authored and inactive123 committed Apr 6, 2019
1 parent 755f476 commit 5012969
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/libretro/libretro.cpp
Expand Up @@ -31,6 +31,8 @@
#include "../gb/gbSGB.h" #include "../gb/gbSGB.h"
#include "../gb/gbSound.h" #include "../gb/gbSound.h"


#define VBA_CURRENT_VERSION "2.1.1"

static retro_log_printf_t log_cb; static retro_log_printf_t log_cb;
static retro_video_refresh_t video_cb; static retro_video_refresh_t video_cb;
static retro_input_poll_t poll_cb; static retro_input_poll_t poll_cb;
Expand Down Expand Up @@ -536,9 +538,9 @@ void retro_get_system_info(struct retro_system_info *info)
info->need_fullpath = false; info->need_fullpath = false;
info->valid_extensions = "dmg|gb|gbc|cgb|sgb|gba"; info->valid_extensions = "dmg|gb|gbc|cgb|sgb|gba";
#ifdef GIT_VERSION #ifdef GIT_VERSION
info->library_version = "2.1.0" GIT_VERSION; info->library_version = VBA_CURRENT_VERSION GIT_VERSION;
#else #else
info->library_version = "2.1.0-GIT"; info->library_version = VBA_CURRENT_VERSION;
#endif #endif
info->library_name = "VBA-M"; info->library_name = "VBA-M";
info->block_extract = false; info->block_extract = false;
Expand Down

0 comments on commit 5012969

Please sign in to comment.