Changed ucs4_string typedef to std::vector<Uint32>
This commit is contained in:
parent
c4436e2fa9
commit
950a4f62b5
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ typedef std::vector<wchar_t> wide_string;
|
|||
//if we append a 0 to that one we can pass it to SDL_ttf
|
||||
//as a const Uint16*
|
||||
typedef std::vector<Uint16> ucs2_string;
|
||||
typedef std::vector<wchar_t> ucs4_string;
|
||||
typedef std::vector<Uint32> ucs4_string;
|
||||
typedef std::string utf8_string;
|
||||
|
||||
namespace utils {
|
||||
|
|
Loading…
Add table
Reference in a new issue