Skip to content

Commit

Permalink
Use const
Browse files Browse the repository at this point in the history
  • Loading branch information
kotcrab committed Aug 31, 2024
1 parent aaa602e commit 884d857
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/kotlin/allegrex/format/elf/PspElfConstants.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package allegrex.format.elf

@Suppress("MayBeConstant")
object PspElfConstants {
val SHT_PSP_REL = 0x700000A0
val SHT_PSP_REL_TYPE_B = 0x700000A1
const val SHT_PSP_REL = 0x700000A0
const val SHT_PSP_REL_TYPE_B = 0x700000A1
}

0 comments on commit 884d857

Please sign in to comment.