| 60 | } |
| 61 | |
| 62 | static std::string ps3_fmt(ppu_thread& context, vm::cptr<char> fmt, |
| 63 | u32 g_count) |
| 64 | { |
| 65 | std::string result; |
| 66 | |
| 67 | cfmt_append(result, fmt.get_ptr(), ps3_fmt_src{&context, g_count}); |
| 68 | |
| 69 | return result; |
| 70 | } |
| 71 | |
| 72 | static const std::array<s16, 129> s_ctype_table{ |
| 73 | 0, |
no test coverage detected