Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

USB/SMB: Support for longer file names to accept redump names #1013

Merged
merged 1 commit into from
Jul 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/supportbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __SUPPORT_BASE_H

#define UL_GAME_NAME_MAX 32
#define ISO_GAME_NAME_MAX 64
#define ISO_GAME_NAME_MAX 160
#define ISO_GAME_EXTENSION_MAX 4
#define GAME_STARTUP_MAX 12

Expand Down
2 changes: 1 addition & 1 deletion modules/iopcore/common/cdvd_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct cdvdman_settings_hdd
struct cdvdman_settings_smb
{
struct cdvdman_settings_common common;
char filename[88];
char filename[160];
union
{
struct
Expand Down