Skip to content

Commit 00e426b

Browse files
committed
update
1 parent 6ed1e70 commit 00e426b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

include/ps2icon.h

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2323
*/
2424

25+
#include <stdint.h>
26+
2527
//================================================================================================
2628
// Typedefs and Defines
2729
//================================================================================================

src/mcio.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include <stdio.h>
2727
#include <time.h>
28+
#include <string.h>
2829

2930
/* Card Flags */
3031
#define CF_USE_ECC 0x01
@@ -2281,7 +2282,7 @@ static int Card_Format(void)
22812282
if (i >= clusters_per_card)
22822283
return sceMcResNoFormat;
22832284

2284-
do {
2285+
do {
22852286
r = Card_WriteCluster(i, 1);
22862287
if (r == 1)
22872288
break;

0 commit comments

Comments
 (0)