diff --git a/src/f_string.rs b/src/f_string.rs index 96649d9..7b94f82 100644 --- a/src/f_string.rs +++ b/src/f_string.rs @@ -1,7 +1,7 @@ use std::fmt::{Display, Formatter}; use std::sync::OnceLock; -use widestring::{WideCStr, WideCString}; +use widestring::{U16CStr, U16CString}; use crate::{Add, Container}; use crate::t_array::TArray; @@ -25,7 +25,7 @@ impl FString { impl Printf for FString { #[inline(always)] fn printf>(handle: usize, fmt: A) { - let tmp = WideCString::from_str(fmt).unwrap(); + let tmp = U16CString::from_str(fmt).unwrap(); unsafe { std::mem::transmute::(*fstring_printf())( handle, @@ -35,11 +35,12 @@ impl Printf for FString { } } -impl<'a> Container<&'a WideCStr> for FString { +impl<'a> Container<&'a U16CStr> for FString { #[inline(always)] - fn read_container(&self) -> &'a WideCStr { + fn read_container(&self) -> &'a U16CStr { unsafe { - WideCStr::from_ptr(self.0.data_ptr as *const u16, self.0.len as usize - 1) + // TODO: Verify this in linux when symphonic is ready + U16CStr::from_ptr(self.0.data_ptr as *const u16, self.0.len as usize - 1) }.unwrap() } } diff --git a/src/t_array.rs b/src/t_array.rs index 8b76f4e..045ba6a 100644 --- a/src/t_array.rs +++ b/src/t_array.rs @@ -1,7 +1,7 @@ use std::fmt::{Display, Formatter}; use std::sync::OnceLock; -use widestring::WideCStr; +use widestring::U16CStr; use crate::{Add, Container}; use crate::f_string::FString; @@ -109,8 +109,8 @@ impl TArray { } } -impl<'a> Container> for TArray { - fn read_container(&self) -> Vec<&'a WideCStr> { +impl<'a> Container> for TArray { + fn read_container(&self) -> Vec<&'a U16CStr> { let mut result = Vec::with_capacity(self.len as usize); for i in 0..self.len { result.push(