Get rid of assembly errors and warnings

This commit is contained in:
UnicornFreedom 2025-08-02 23:05:56 +02:00
parent e23db58c4c
commit e0b8f61b6e
No known key found for this signature in database
GPG Key ID: B4ED0DB6B940024F
2 changed files with 5 additions and 4 deletions

@ -1 +1 @@
Subproject commit 9cbd03d6be9c5e76d7f6aa01d28e366a6be7b2b0 Subproject commit 495332f2d60083403cdf0f501a563fcb54841142

View File

@ -27,6 +27,9 @@ object IconSource {
IconSource(s"icons/Tier${tier.id}") IconSource(s"icons/Tier${tier.id}")
} }
val SideNoneIcon: IconSource = IconSource("icons/SideNone")
val SideAnyIcon: IconSource = IconSource("icons/SideAny")
val SideUndefinedIcon: IconSource = IconSource("icons/SideUndefined")
val SideIcon: Direction => IconSource = { val SideIcon: Direction => IconSource = {
case Down => IconSource(s"icons/SideDown") case Down => IconSource(s"icons/SideDown")
case Up => IconSource(s"icons/SideUp") case Up => IconSource(s"icons/SideUp")
@ -34,10 +37,8 @@ object IconSource {
case South => IconSource(s"icons/SideSouth") case South => IconSource(s"icons/SideSouth")
case West => IconSource(s"icons/SideWest") case West => IconSource(s"icons/SideWest")
case East => IconSource(s"icons/SideEast") case East => IconSource(s"icons/SideEast")
case _ => SideUndefinedIcon
} }
val SideNoneIcon: IconSource = IconSource("icons/SideNone")
val SideAnyIcon: IconSource = IconSource("icons/SideAny")
val SideUndefinedIcon: IconSource = IconSource("icons/SideUndefined")
object Items { object Items {
val Cpu: Tier => IconSource = { tier => val Cpu: Tier => IconSource = { tier =>