mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 14:20:08 +01:00
Compilation fix
This commit is contained in:
parent
a74e07dc40
commit
04c67c3f4b
|
|
@ -3,7 +3,7 @@
|
|||
class vfsDevice;
|
||||
struct vfsFileBase;
|
||||
class vfsDirBase;
|
||||
enum vfsOpenMode;
|
||||
enum vfsOpenMode : u8;
|
||||
|
||||
enum vfsDeviceType
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
#include "vfsStream.h"
|
||||
|
||||
enum vfsOpenMode
|
||||
enum vfsOpenMode : u8
|
||||
{
|
||||
vfsRead = 0x1,
|
||||
vfsWrite = 0x2,
|
||||
|
|
|
|||
Loading…
Reference in a new issue