Skip to content

Commit

Permalink
Support devkit wii milos
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Feb 7, 2024
1 parent 1c05ca3 commit 36a926d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/grim/src/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ impl SystemInfo {
let mut endian = IOEndian::Big;
let mut version = 25;

if platform == Platform::X360 {
// Devkit wii is little endian for some reason
if platform == Platform::X360 || platform == Platform::Wii {
if let Some((end, ver)) = milo.guess_endian_version() {
endian = end;
version = ver;
Expand Down

0 comments on commit 36a926d

Please sign in to comment.