diff options
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/bootmanager.cpp | 4 | ||||
| -rw-r--r-- | src/yuzu/debugger/graphics/graphics_surface.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/debugger/graphics/graphics_surface.h | 2 | 
3 files changed, 3 insertions, 5 deletions
| diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index d2c97b1f8..05ad19e1d 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -24,8 +24,6 @@ void EmuThread::run() {      MicroProfileOnThreadCreate("EmuThread"); -    stop_run = false; -      emit LoadProgress(VideoCore::LoadCallbackStage::Prepare, 0, 0);      Core::System::GetInstance().Renderer().Rasterizer().LoadDiskResources( @@ -40,7 +38,7 @@ void EmuThread::run() {          render_window->DoneCurrent();      } -    // holds whether the cpu was running during the last iteration, +    // Holds whether the cpu was running during the last iteration,      // so that the DebugModeLeft signal can be emitted before the      // next execution step      bool was_active = false; diff --git a/src/yuzu/debugger/graphics/graphics_surface.cpp b/src/yuzu/debugger/graphics/graphics_surface.cpp index 29f01dfb2..11023ed63 100644 --- a/src/yuzu/debugger/graphics/graphics_surface.cpp +++ b/src/yuzu/debugger/graphics/graphics_surface.cpp @@ -261,7 +261,7 @@ void GraphicsSurfaceWidget::OnSurfaceSourceChanged(int new_value) {  void GraphicsSurfaceWidget::OnSurfaceAddressChanged(qint64 new_value) {      if (surface_address != new_value) { -        surface_address = static_cast<Tegra::GPUVAddr>(new_value); +        surface_address = static_cast<GPUVAddr>(new_value);          surface_source_list->setCurrentIndex(static_cast<int>(Source::Custom));          emit Update(); diff --git a/src/yuzu/debugger/graphics/graphics_surface.h b/src/yuzu/debugger/graphics/graphics_surface.h index 323e39d94..89445b18f 100644 --- a/src/yuzu/debugger/graphics/graphics_surface.h +++ b/src/yuzu/debugger/graphics/graphics_surface.h @@ -87,7 +87,7 @@ private:      QPushButton* save_surface;      Source surface_source; -    Tegra::GPUVAddr surface_address; +    GPUVAddr surface_address;      unsigned surface_width;      unsigned surface_height;      Tegra::Texture::TextureFormat surface_format; | 
