mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
14 lines
314 B
C++
14 lines
314 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
logs::channel cellVideoUpload("cellVideoUpload", logs::level::notice);
|
|
|
|
s32 cellVideoUploadInitialize()
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellVideoUpload)("cellVideoUpload", []()
|
|
{
|
|
REG_FUNC(cellVideoUpload, cellVideoUploadInitialize);
|
|
});
|