Explorar el Código

FS: Fix port name (old port name was based on an unaligned memory read).

bunnei hace 12 años
padre
commit
81fa804b3c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/hle/service/fs.h

+ 1 - 1
src/core/hle/service/fs.h

@@ -24,7 +24,7 @@ public:
      * @return Port name of service
      */
     const char *GetPortName() const {
-        return "Ufs:";
+        return "fs:USER";
     }
 };