externals: Update xbyak to 6.60.1

Merge commit '9af5f5908c'
This commit is contained in:
Merry 2022-06-16 06:53:34 +01:00
commit e99ba06cf3
9 changed files with 91 additions and 79 deletions

View file

@ -252,7 +252,7 @@ void put()
char buf[16];
unsigned int v = VERSION;
if (v & 0xF) {
snprintf(buf, sizeof(buf), "%d.%02X%x", v >> 12, (v >> 4) & 0xFF, v & 0xF);
snprintf(buf, sizeof(buf), "%d.%02X.%x", v >> 12, (v >> 4) & 0xFF, v & 0xF);
} else {
snprintf(buf, sizeof(buf), "%d.%02X", v >> 12, (v >> 4) & 0xFF);
}