Files
ppsspp/Core/AVIDump.h
Henrik Rydgård 1be01aea52 rcheevos: Call rc_client_do_frame in the flip callback.
Also some minor cleanup of the AVI recording.

Should fix #20383
2025-05-25 22:21:37 +02:00

24 lines
469 B
C++

// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#ifndef MOBILE_DEVICE
#pragma once
#include "Common/CommonTypes.h"
#include "Common/File/Path.h"
class AVIDump {
private:
static bool CreateAVI();
static void CloseFile();
static void CheckResolution(int width, int height);
public:
static bool Start(int w, int h);
static void AddFrame();
static void Stop();
static Path LastFilename();
};
#endif