Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Commit 9d3bc32

Browse files
author
Martin Larralde
committed
Fix i32 being used as SceUInt in psp2_sys::types
1 parent 06c3693 commit 9d3bc32

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9+
### Fixed
10+
- Fix `i32` being used instead of `u32` as `psp2_sys::types::SceUInt`
911

1012
## [v0.2.2] - 2018-09-12
1113
### Fixed

src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub type SceInt32 = i32;
1111
pub type SceUInt32 = u32;
1212

1313
pub type SceInt = i32;
14-
pub type SceUInt = i32;
14+
pub type SceUInt = u32;
1515

1616
pub type SceInt64 = i64;
1717
pub type SceUInt64 = u64;

0 commit comments

Comments
 (0)