Skip to content

Commit

Permalink
Merge branch 'refs/heads/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneN64 committed May 25, 2024
2 parents bce60e5 + 6003f02 commit 83f3571
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/backend/core/mmio/Audio.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <Audio.hpp>
#include <log.hpp>
#include <SDL2/SDL.h>

namespace n64 {
#define AUDIO_SAMPLE_RATE 44100
Expand Down
2 changes: 1 addition & 1 deletion src/backend/core/mmio/Audio.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once
#include <MemoryHelpers.hpp>
#include <SDL2/SDL.h>
#include <SDL2/SDL_audio.h>

namespace n64 {
struct AudioDevice {
Expand Down
1 change: 1 addition & 0 deletions src/frontend/EmuThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <RenderWidget.hpp>
#include <ParallelRDPWrapper.hpp>
#include "Audio.hpp"
#include <SDL2/SDL.h>

EmuThread::EmuThread(std::unique_ptr<QtInstanceFactory>&& instance_, std::unique_ptr<Vulkan::WSIPlatform>&& wsiPlatform_, std::unique_ptr<ParallelRDP::WindowInfo>&& windowInfo_, SettingsWindow& settings) noexcept
: instance(std::move(instance_)), wsiPlatform(std::move(wsiPlatform_)),
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/EmuThread.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <Core.hpp>
#include <SettingsWindow.hpp>
#include <memory>
#include <SDL2/SDL.h>
#include <SDL2/SDL_gamecontroller.h>

class EmuThread : public QThread
{
Expand Down

0 comments on commit 83f3571

Please sign in to comment.