forked from Popn_Tools/popnhax
fix subcategories scrolling bug
This commit is contained in:
parent
15b1bf20a7
commit
4c5751a694
@ -250,7 +250,7 @@ static bool subcateg_has_songid(uint32_t songid, subcategory_s* subcateg)
|
||||
{
|
||||
for ( uint32_t i = 0; i < subcateg->size; i++ )
|
||||
{
|
||||
if ( subcateg->songlist[i] == songid )
|
||||
if ( (subcateg->songlist[i] & 0x0000FFFF) == songid )
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
#include "SearchFile.h"
|
||||
|
||||
#define PROGRAM_VERSION "1.11b"
|
||||
#define PROGRAM_VERSION "1.11c"
|
||||
|
||||
const char *g_game_dll_fn = NULL;
|
||||
const char *g_config_fn = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user