early-access version 2506
This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| yuzu emulator early access | ||||
| ============= | ||||
|  | ||||
| This is the source code for early-access 2504. | ||||
| This is the source code for early-access 2506. | ||||
|  | ||||
| ## Legal Notice | ||||
|  | ||||
|   | ||||
| @@ -100,6 +100,8 @@ VkFormat GetFormat(const Tegra::FramebufferConfig& framebuffer) { | ||||
|         return VK_FORMAT_A8B8G8R8_UNORM_PACK32; | ||||
|     case Tegra::FramebufferConfig::PixelFormat::RGB565_UNORM: | ||||
|         return VK_FORMAT_R5G6B5_UNORM_PACK16; | ||||
|     case Tegra::FramebufferConfig::PixelFormat::B8G8R8A8_UNORM: | ||||
|         return VK_FORMAT_B8G8R8A8_UNORM; | ||||
|     default: | ||||
|         UNIMPLEMENTED_MSG("Unknown framebuffer pixel format: {}", | ||||
|                           static_cast<u32>(framebuffer.pixel_format)); | ||||
|   | ||||
| @@ -2937,6 +2937,7 @@ void GMainWindow::OnLoadAmiibo() { | ||||
|     if (nfc_state == Service::NFP::DeviceState::TagFound || | ||||
|         nfc_state == Service::NFP::DeviceState::TagMounted) { | ||||
|         nfc->CloseAmiibo(); | ||||
|         QMessageBox::warning(this, tr("Amiibo"), tr("The current amiibo has been removed")); | ||||
|         return; | ||||
|     } | ||||
|  | ||||
| @@ -2965,6 +2966,15 @@ void GMainWindow::LoadAmiibo(const QString& filename) { | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|     // Remove amiibo if one is connected | ||||
|     const auto nfc_state = nfc->GetCurrentState(); | ||||
|     if (nfc_state == Service::NFP::DeviceState::TagFound || | ||||
|         nfc_state == Service::NFP::DeviceState::TagMounted) { | ||||
|         nfc->CloseAmiibo(); | ||||
|         QMessageBox::warning(this, tr("Amiibo"), tr("The current amiibo has been removed")); | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|     QFile nfc_file{filename}; | ||||
|     if (!nfc_file.open(QIODevice::ReadOnly)) { | ||||
|         QMessageBox::warning(this, tr("Error opening Amiibo data file"), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user