Support hex digits in the raw tile reader.

This commit is contained in:
King_DuckZ 2015-01-07 15:07:11 +01:00
parent 7a8ffe2060
commit 8ead404ee8

View file

@ -26,7 +26,7 @@ namespace dkh { namespace implem {
boost::spirit::qi::rule<I, std::vector<T>()> start;
std::vector<int> lengths;
boost::phoenix::function<get_line_f> getline;
boost::spirit::qi::int_parser<T, 10, 1, 1> digit_int;
boost::spirit::qi::int_parser<T, 16, 1, 1> digit_int;
};
template <typename I, typename T>