(360) Build fix

This commit is contained in:
twinaphex 2012-07-28 22:51:33 +02:00
parent 6ada9080f1
commit 376ca9d087
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ filebrowser_t *tmp_browser;
uint32_t set_shader = 0;
wchar_t strw_buffer[PATH_MAX];
char_t str_buffer[PATH_MAX];
char str_buffer[PATH_MAX];
/* Register custom classes */
HRESULT CRetroArch::RegisterXuiClasses (void)

View File

@ -384,7 +384,7 @@ void xdk360_console_format(const char * strFormat)
for( unsigned long i = 0; i < uStringLength; i++ )
{
wchar_t wch;
rarch_convert_char_to_wchar(&wch, &strFormat[i], sizeof(wch));
convert_char_to_wchar(&wch, &strFormat[i], sizeof(wch));
// If this is a newline, just increment lines and move on
if( wch == L'\n' )