We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ed1e70 commit 00e426bCopy full SHA for 00e426b
include/ps2icon.h
@@ -22,6 +22,8 @@
22
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
*/
24
25
+#include <stdint.h>
26
+
27
//================================================================================================
28
// Typedefs and Defines
29
src/mcio.c
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <time.h>
+#include <string.h>
30
/* Card Flags */
31
#define CF_USE_ECC 0x01
@@ -2281,7 +2282,7 @@ static int Card_Format(void)
2281
2282
if (i >= clusters_per_card)
2283
return sceMcResNoFormat;
2284
- do {
2285
+ do {
2286
r = Card_WriteCluster(i, 1);
2287
if (r == 1)
2288
break;
0 commit comments