Skip to content

Commit

Permalink
Bump version number to 2013-07-16
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlgc committed Jul 16, 2013
1 parent 7b23f0c commit a30620f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion thcrap/src/global.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const char* PROJECT_NAME_SHORT()
}
const DWORD PROJECT_VERSION()
{
return 0x20130714;
return 0x20130716;
}
const char* PROJECT_VERSION_STRING()
{
Expand Down
6 changes: 3 additions & 3 deletions thcrap_tsa/src/spells.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// Lookup cache
static json_t *spells = NULL;
static json_t *spellcomments = NULL;
static size_t cache_spell_id;
static size_t cache_spell_id_real;
static size_t cache_spell_id = 0;
static size_t cache_spell_id_real = 0;

int BP_spell_id(x86_reg_t *regs, json_t *bp_info)
{
Expand Down Expand Up @@ -47,7 +47,7 @@ int BP_spell_name(x86_reg_t *regs, json_t *bp_info)
BP_spell_id(regs, bp_info);
// -----------------

if(spell_name) {
if(spell_name && cache_spell_id_real >= cache_spell_id) {
const char *new_name = NULL;
size_t i = cache_spell_id_real;

Expand Down

0 comments on commit a30620f

Please sign in to comment.