mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
fix version string
This commit is contained in:
parent
172d31ed42
commit
1a66882197
|
|
@ -27,7 +27,7 @@ struct Version {
|
|||
if (digit >= 10) {
|
||||
buf[i] = 'a' + (digit - 10);
|
||||
} else {
|
||||
buf[i] += '0' + digit;
|
||||
buf[i] = '0' + digit;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue