mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-19 08:46:57 +00:00
(360) Added some extra printf reports to get_environment_settting
This commit is contained in:
parent
1317ce1aea
commit
402be572ea
14
360/main.c
14
360/main.c
@ -155,8 +155,18 @@ static void get_environment_settings (void)
|
||||
|
||||
MountAll();
|
||||
|
||||
XSetFileCacheSize(0x100000);
|
||||
XMountUtilityDriveEx(XMOUNTUTILITYDRIVE_FORMAT0,8192, 0);
|
||||
BOOL result_filecache = XSetFileCacheSize(0x100000);
|
||||
|
||||
if(result_filecache != TRUE)
|
||||
{
|
||||
SSNES_ERR("Couldn't hange number of bytes reserved for file system cache.\n");
|
||||
}
|
||||
DWORD result = XMountUtilityDriveEx(XMOUNTUTILITYDRIVE_FORMAT0,8192, 0);
|
||||
|
||||
if(result != ERROR_SUCCESS)
|
||||
{
|
||||
SSNES_ERR("Couldn't mount/format utility drive.\n");
|
||||
}
|
||||
|
||||
// detect install environment
|
||||
DWORD license_mask;
|
||||
|
@ -39,7 +39,6 @@ static int16_t xdk360_input_state(void *data, const struct snes_keybind **binds,
|
||||
{
|
||||
(void)data;
|
||||
(void)binds;
|
||||
(void)index;
|
||||
|
||||
if (device != SNES_DEVICE_JOYPAD)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user