mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-12 17:58:29 +12:00
Add support for games in NUS format (.app)
Requires title.tmd and title.tik in same directory
This commit is contained in:
parent
f9f6206929
commit
5ad57bb0c9
8 changed files with 54 additions and 24 deletions
|
@ -468,6 +468,14 @@ inline fs::path _utf8ToPath(std::string_view input)
|
|||
return fs::path(v);
|
||||
}
|
||||
|
||||
// locale-independent variant of tolower() which also matches Wii U behavior
|
||||
inline char _ansiToLower(char c)
|
||||
{
|
||||
if (c >= 'A' && c <= 'Z')
|
||||
c -= ('A' - 'a');
|
||||
return c;
|
||||
}
|
||||
|
||||
class RunAtCemuBoot // -> replaces this with direct function calls. Linkers other than MSVC may optimize way object files entirely if they are not referenced from outside. So a source file self-registering using this would be causing issues
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue