mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Fix some vertical alignments
ie. uses spaces for alignment.
This commit is contained in:
@ -187,10 +187,10 @@ bool IsWbfsBlob(const char* filename)
|
||||
u8 magic[4] = {0, 0, 0, 0};
|
||||
f.ReadBytes(&magic, 4);
|
||||
|
||||
return (magic[0] == 'W') &&
|
||||
(magic[1] == 'B') &&
|
||||
(magic[2] == 'F') &&
|
||||
(magic[3] == 'S');
|
||||
return (magic[0] == 'W') &&
|
||||
(magic[1] == 'B') &&
|
||||
(magic[2] == 'F') &&
|
||||
(magic[3] == 'S');
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user