mirror of
https://github.com/zeldaret/ss
synced 2026-08-12 20:02:26 -04:00
wip
This commit is contained in:
@@ -104,7 +104,7 @@ struct SizedString {
|
||||
template <size_t Size>
|
||||
struct SizedWString {
|
||||
SizedWString() {
|
||||
mChars[0] = '\0';
|
||||
mChars[0] = L'\0';
|
||||
}
|
||||
|
||||
wchar_t mChars[Size];
|
||||
@@ -117,6 +117,10 @@ struct SizedWString {
|
||||
return mChars;
|
||||
}
|
||||
|
||||
void empty() {
|
||||
mChars[0] = L'\0';
|
||||
}
|
||||
|
||||
int sprintf(const wchar_t *fmt, ...) {
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
||||
Reference in New Issue
Block a user