mirror of
https://github.com/dolphin-emu/dolphin
synced 2025-10-06 00:13:03 +02:00
Compare commits
5 Commits
489952cf89
...
11b9e40275
Author | SHA1 | Date | |
---|---|---|---|
|
11b9e40275 | ||
|
83cbedd609 | ||
|
e0332f3749 | ||
|
c7ff0bf475 | ||
|
88ef583c0e |
@@ -318,9 +318,9 @@ static bool LoadFirmware(LibUSBBluetoothAdapter& adapter, std::span<const char>
|
||||
|
||||
HCICommandPayload<0xfc20, rtl_download_cmd> payload{};
|
||||
|
||||
const auto write_block = [&](std::span<const u8> data) {
|
||||
const auto write_block = [&](std::span<const u8> block) {
|
||||
rtl_download_response result{};
|
||||
if (!adapter.SendBlockingCommand(data, Common::AsWritableU8Span(result)))
|
||||
if (!adapter.SendBlockingCommand(block, Common::AsWritableU8Span(result)))
|
||||
return false;
|
||||
|
||||
if (result.status != 0x00)
|
||||
|
@@ -496,17 +496,22 @@ QTabBar QToolButton::left-arrow {
|
||||
QTabBar QToolButton::right-arrow {
|
||||
image: url(:/dolphin_dark_win/right-triangle-tabbar.svg);
|
||||
}
|
||||
|
||||
QTableCornerButton::section {
|
||||
background-color: #202020;
|
||||
border: 1px solid #7e7e7e;
|
||||
border-top: 0px;
|
||||
border-left: 0px;
|
||||
border-bottom: 0px;
|
||||
background-color: #202020;
|
||||
border: 1px solid #7e7e7e;
|
||||
border-top: 0px;
|
||||
border-left: 0px;
|
||||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
QProgressBar {
|
||||
border: 2px solid grey;
|
||||
border-radius: 5px;
|
||||
background-color: #202020;
|
||||
}
|
||||
|
||||
background-color: #202020;
|
||||
border: 1px solid #7e7e7e;
|
||||
color: #dcdcdc;
|
||||
text-align: center;
|
||||
}
|
||||
QProgressBar::chunk {
|
||||
background-color: #24a806;
|
||||
width: 1px;
|
||||
}
|
||||
|
Reference in New Issue
Block a user