mirror of
https://github.com/digarok/gsplus.git
synced 2025-02-17 11:31:11 +00:00
uncrustify.
This commit is contained in:
parent
a5e55f826c
commit
8be3dad543
@ -427,8 +427,7 @@ const char *host_error_name(word16 error) {
|
||||
*/
|
||||
|
||||
|
||||
static int hex(byte c)
|
||||
{
|
||||
static int hex(byte c) {
|
||||
if (c >= '0' && c <= '9') return c - '0';
|
||||
if (c >= 'a' && c <= 'f') return c + 10 - 'a';
|
||||
if (c >= 'A' && c <= 'F') return c + 10 - 'A';
|
||||
|
Loading…
x
Reference in New Issue
Block a user