mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
input: try to add tony hawk RIDE Skateboard
This commit is contained in:
parent
6dcdf6ec76
commit
0bb5974ab6
24 changed files with 791 additions and 30 deletions
|
@ -181,11 +181,13 @@ namespace fmt
|
|||
|
||||
struct buf_to_hexstring
|
||||
{
|
||||
buf_to_hexstring(const u8* buf, usz len)
|
||||
: buf(buf), len(len) {}
|
||||
buf_to_hexstring(const u8* buf, usz len, usz line_length = 16, bool with_prefix = false)
|
||||
: buf(buf), len(len), line_length(line_length), with_prefix(with_prefix) {}
|
||||
|
||||
const u8* buf;
|
||||
usz len;
|
||||
usz line_length;
|
||||
bool with_prefix;
|
||||
};
|
||||
|
||||
struct string_hash
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue