Compare commits
5 Commits
b9ffae0269
...
release-d2
Author | SHA1 | Date | |
---|---|---|---|
1057099fcf | |||
17577b6e8b | |||
db442e2775 | |||
23cd50d29e | |||
28088d1ed1 |
@@ -275,7 +275,7 @@ bool bgStatus(Context&, unsigned const bg) noexcept {
|
||||
|
||||
void setBgStatus(Context&, unsigned const bg, bool const status) noexcept {
|
||||
constexpr auto Bg0Status = 8;
|
||||
auto const mask = static_cast<uint32_t>(status) << (Bg0Status + bg);
|
||||
const auto mask = static_cast<uint32_t>(status) << (Bg0Status + bg);
|
||||
REG_DISPCTL = REG_DISPCTL | ((REG_DISPCTL & ~mask) | mask);
|
||||
}
|
||||
|
||||
|
@@ -15,7 +15,7 @@ target_link_libraries(
|
||||
|
||||
target_compile_definitions(
|
||||
NostalgiaStudio PUBLIC
|
||||
OLYMPIC_APP_VERSION="dev build"
|
||||
OLYMPIC_APP_VERSION="d2025.06.0"
|
||||
)
|
||||
|
||||
install(
|
||||
|
@@ -18,7 +18,7 @@
|
||||
<string>APPL</string>
|
||||
|
||||
<key>CFBundleVersion</key>
|
||||
<string>dev build</string>
|
||||
<string>d2025.06.0</string>
|
||||
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>12.0.0</string>
|
||||
|
@@ -635,7 +635,8 @@ ox::Error StudioUI::openProjectPath(ox::StringParam path) noexcept {
|
||||
keel::DuplicateSet ds;
|
||||
OX_RETURN_ERROR(keel::setRomFs(keelCtx(m_tctx), std::move(fs), ds));
|
||||
if (ds.size()) {
|
||||
ox::String msg{"Multiple files have the same UUID:\n"};
|
||||
ox::String msg;
|
||||
msg += "Multiple files have the same UUID:\n";
|
||||
for (auto const &k : ds.keys()) {
|
||||
msg += ox::sfmt("\n\t{}:\n", k.toString());
|
||||
for (auto const &v : ds[k]) {
|
||||
|
Reference in New Issue
Block a user