mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 13:11:22 +00:00
Don't use GNU extensions for fopen
This commit is contained in:
parent
3a71a72ec7
commit
22256228fb
@ -473,7 +473,7 @@ void __PADLoadMapping(aurora::input::GameController* controller) {
|
||||
|
||||
auto path = fmt::format(FMT_STRING("{}/{}_{:04X}_{:04X}.controller"), basePath, PADGetName(playerIndex),
|
||||
controller->m_vid, controller->m_pid);
|
||||
FILE* file = fopen(path.c_str(), "rbe");
|
||||
FILE* file = fopen(path.c_str(), "rb");
|
||||
if (file == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user