-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to c++20 and rework c-style image merge * moved to c++23, partial working * removed generic-toolbox dependency * save before coroutines integration * revert unique_ptr change on img; more error handling * working * increment version
- Loading branch information
Showing
15 changed files
with
284 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
|
||
namespace paths | ||
{ | ||
const std::string BasePath = "sdmc:/avatars/"; | ||
const std::string BaseAppPath = "sdmc:/avatars/nso-icon-tool"; | ||
const std::string_view BasePath = "sdmc:/avatars/"; | ||
const std::string_view BaseAppPath = "sdmc:/avatars/nso-icon-tool/"; | ||
|
||
const std::string IconCachePath = "sdmc:/avatars/nso-icons-main/"; | ||
const std::string CacheFilePath = "sdmc:/avatars/nso-icon-tool/cache.json"; | ||
const std::string LogFilePath = "sdmc:/avatars/nso-icon-tool/log.log"; | ||
const std::string CollectionPath = "sdmc:/avatars/nso-icon-tool/collection"; | ||
const std::string_view IconCachePath = "sdmc:/avatars/nso-icons-main/"; | ||
const std::string_view CacheFilePath = "sdmc:/avatars/nso-icon-tool/cache.json"; | ||
const std::string_view LogFilePath = "sdmc:/avatars/nso-icon-tool/log.log"; | ||
const std::string_view CollectionPath = "sdmc:/avatars/nso-icon-tool/collection"; | ||
} |
Submodule cpp-generic-toolbox
deleted from
420dd6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.