mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Merge pull request #4726 from ligfx/addingwindowsheaders
Fix building without PCH on Windows
This commit is contained in:
commit
f70a1a27fa
19 changed files with 36 additions and 22 deletions
|
@ -70,7 +70,7 @@ bool AVIDump::Start(int w, int h)
|
|||
s_last_pts = 0;
|
||||
|
||||
InitAVCodec();
|
||||
bool success = CreateFile();
|
||||
bool success = CreateVideoFile();
|
||||
if (!success)
|
||||
{
|
||||
CloseFile();
|
||||
|
@ -79,7 +79,7 @@ bool AVIDump::Start(int w, int h)
|
|||
return success;
|
||||
}
|
||||
|
||||
bool AVIDump::CreateFile()
|
||||
bool AVIDump::CreateVideoFile()
|
||||
{
|
||||
AVCodec* codec = nullptr;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
class AVIDump
|
||||
{
|
||||
private:
|
||||
static bool CreateFile();
|
||||
static bool CreateVideoFile();
|
||||
static void CloseFile();
|
||||
static void CheckResolution(int width, int height);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue