mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Replace utfcpp by UTF8.h in CustomLevels.cpp
This commit is contained in:
parent
2474623b59
commit
393c5ac4fe
1 changed files with 2 additions and 5 deletions
|
@ -7,7 +7,6 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <tinyxml2.h>
|
#include <tinyxml2.h>
|
||||||
#include <utf8/unchecked.h>
|
|
||||||
|
|
||||||
#include "Alloc.h"
|
#include "Alloc.h"
|
||||||
#include "Constants.h"
|
#include "Constants.h"
|
||||||
|
@ -24,6 +23,7 @@
|
||||||
#include "Map.h"
|
#include "Map.h"
|
||||||
#include "Screen.h"
|
#include "Screen.h"
|
||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
|
#include "UTF8.h"
|
||||||
#include "UtilityClass.h"
|
#include "UtilityClass.h"
|
||||||
#include "Vlogging.h"
|
#include "Vlogging.h"
|
||||||
#include "XMLUtils.h"
|
#include "XMLUtils.h"
|
||||||
|
@ -208,10 +208,7 @@ static std::string find_tag(const std::string& buf, const std::string& start, co
|
||||||
{
|
{
|
||||||
SDL_sscanf(number.c_str(), "%" SCNu32, &character);
|
SDL_sscanf(number.c_str(), "%" SCNu32, &character);
|
||||||
}
|
}
|
||||||
uint32_t utf32[] = {character, 0};
|
value.replace(start_pos, end - start_pos + 1, UTF8_encode(character).bytes);
|
||||||
std::string utf8;
|
|
||||||
utf8::unchecked::utf32to8(utf32, utf32 + 1, std::back_inserter(utf8));
|
|
||||||
value.replace(start_pos, end - start_pos + 1, utf8);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
|
|
Loading…
Reference in a new issue