Changed ucs4_string typedef to std::vector<Uint32>

This commit is contained in:
Jon Daniel 2005-03-06 01:55:38 +00:00
parent c4436e2fa9
commit 950a4f62b5

View file

@ -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 {