mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
Compilation fix
This commit is contained in:
parent
a74e07dc40
commit
04c67c3f4b
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
class vfsDevice;
|
class vfsDevice;
|
||||||
struct vfsFileBase;
|
struct vfsFileBase;
|
||||||
class vfsDirBase;
|
class vfsDirBase;
|
||||||
enum vfsOpenMode;
|
enum vfsOpenMode : u8;
|
||||||
|
|
||||||
enum vfsDeviceType
|
enum vfsDeviceType
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "vfsStream.h"
|
#include "vfsStream.h"
|
||||||
|
|
||||||
enum vfsOpenMode
|
enum vfsOpenMode : u8
|
||||||
{
|
{
|
||||||
vfsRead = 0x1,
|
vfsRead = 0x1,
|
||||||
vfsWrite = 0x2,
|
vfsWrite = 0x2,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue