mirror of
https://github.com/libretro/Mesen-S.git
synced 2024-11-27 02:20:34 +00:00
206214ce2b
Improves sound - blip_buf was altering the audio output quite a bit compared to the DSP's raw output
34 lines
632 B
C++
34 lines
632 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <atomic>
|
|
#include <cstring>
|
|
#include <algorithm>
|
|
|
|
#include "UTF8Util.h"
|
|
|
|
using std::shared_ptr;
|
|
using std::unique_ptr;
|
|
using utf8::ifstream;
|
|
using utf8::ofstream;
|
|
using std::ostream;
|
|
using std::istream;
|
|
using std::string;
|
|
using std::vector;
|
|
using std::atomic;
|
|
using std::atomic_flag;
|
|
|
|
#ifndef __MINGW32__
|
|
#ifdef __clang__
|
|
#define __forceinline __attribute__((always_inline)) inline
|
|
#else
|
|
#ifdef __GNUC__
|
|
#define __forceinline __attribute__((always_inline)) inline
|
|
#endif
|
|
#endif
|
|
#endif |